我正在尝试使用PDO bindValue,但它不适合我。
public static function insert($tableName, $columnValues = array()) {
$columns = array_keys ( $columnValues );
$columns = '`' . implode ( '`,`', $columns ) . '`';
$values = null;
$x = 1;
$y = 1;
foreach ( $columnValues as $value ) {
$values .= '?';
if ($x < count ( $columnValues )) {
$values .= ',';
}
$x ++;
}
$sql = "INSERT INTO {$tableName} ($columns) VALUES($values)" . '</br>';
if ($sqlString = DatabaseConnection::getConnectionInstance ()->pdo->prepare ( $sql )) {
foreach ( $columnValues as $value ) {
$sqlString->bindValue ( $y, $value );
$y ++;
}
if ($sqlString->execute ()) {
echo 'executed';
}
}
return false;
}
答案 0 :(得分:0)
我已修改您的函数以使用延迟绑定,请参阅PDO info。
请注意您的implode()
不太对劲。
我添加了回声来显示测试后你应该删除的结果。
public static function insert($tableName, $columnValues = array()) {
$columns = array_keys( $columnValues );
$params = array_values( $columnValues );// Array to hold values for lazy binding
$columns = '`' . implode ("`,`", $columns ) . '`';
$values = null;
$x = 1;/*
$y = 1;*/
foreach ( $columnValues as $value ) {
$values .= '?';
if ($x < count ( $columnValues )) {
$values .= ',';
}
$x ++;
}
$sql = "INSERT INTO {$tableName} ($columns) VALUES($values)" . '</br>';
if ($sqlString = DatabaseConnection::getConnectionInstance ()->pdo->prepare ( $sql )) {
echo $sql;//For Testing
echo "<br>";//For Testing
var_dump($params);//For Testing
if ($sqlString->execute ($params)) {
echo 'executed';
}
}
return false;
}
此功能产生
INSERT INTO test (`Peter`,`Ben`,`Joe`) VALUES(?,?,?)
array(3) { [0]=> int(35) [1]=> int(37) [2]=> int(43) }
这
$columnValues = array("Peter"=>35, "Ben"=>37, "Joe"=>43);
$tableName ="test";
insert($tableName, $columnValues)