PDO使用带引号的数组

PDO使用带引号的数组

本文介绍了PDO使用带引号的数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是PDO的新手

$sFields = "'".implode("', '", $fields)."'";
$sColumns = implode(", ", $columns);
$sql = "INSERT INTO $table ($sColumns) VALUES ($sFields)";

在要插入的每个值上使用PDO :: quote的最短方法是什么.

What is the shortest way to use PDO::quote on each value I want to insert.

我尝试过

$fields = array_map('$bdd->quote', $fields);

但它返回:

推荐答案

除了concat sql字符串外,还有其他方法.

There is other way than concat sql string.

$sColumns = implode(", ", $columns);
$sFields = implode(',', array_fill(0, count($fields), '?'));
$sql = "INSERT INTO $table ($sColumns) VALUES ($sFields)";

$stmt = $pdo->prepare($sql);
$stmt->execute($fields);

这篇关于PDO使用带引号的数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 11:33