循环内 PDO 语句的绑定参数

2022-08-30 16:05:31

我正在尝试在循环中绑定SQL查询的参数:

$db = new PDO('mysql:dbname=test;host=localhost', 'test', '');  
$stmt = $db->prepare('INSERT INTO entries VALUES (NULL, ?, ?, ?, NULL)');

$title = 'some titile';
$post = 'some text';
$date = '2010-whatever';  

$reindex = array(1 => $title, $post, $date); // indexed with 1 for bindParam

foreach ($reindex as $key => $value) {  
    $stmt->bindParam($key, $value);  
    echo "$key</br>$value</br>";  //will output: 1</br>some titile</br>2</br>some text</br>3</br>2010-whatever</br>
}

上面的代码插入到数据库中的所有3个字段中。2010-whatever

这个工作正常:

$stmt->bindParam(1, $title);
$stmt->bindParam(2, $post);
$stmt->bindParam(3, $date);

所以,我的问题是为什么foreach循环中的代码失败并在字段中插入错误的数据?


答案 1

问题是需要参考。它将变量绑定到语句,而不是值。由于循环中的变量在每次迭代结束时未设置,因此您无法使用问题中的代码。bindParamforeach

您可以使用 中的引用执行以下操作:foreach

foreach ($reindex as $key => &$value) {  //pass $value as a reference to the array item
    $stmt->bindParam($key, $value);  // bind the variable to the statement
}

或者你可以这样做,使用:bindValue

foreach ($reindex as $key => $value) {
    $stmt->bindValue($key, $value);  // bind the value to the statement
}

答案 2

推荐