PDO::bindParam 在 foreach 循环中,所有值都设置为相同吗?
Posted
技术标签:
【中文标题】PDO::bindParam 在 foreach 循环中,所有值都设置为相同吗?【英文标题】:PDO::bindParam in a foreach loop, all values are being set as the same? 【发布时间】:2012-09-02 20:37:32 【问题描述】:我正在尝试使用 a 函数让重复的数据库调用更轻松一些,该函数应该(理论上)允许我使用数组绑定参数:
function query($tblName,$queryParams = false)
$this->queryObject = $this->con->prepare($this->queryString);
if($queryParams)
foreach ($queryParams as $key => $value)
$this->queryObject->bindParam($key, $value);
$this->queryResult = $this->queryObject->execute();
print_r($this->queryResult);
然后我这样称呼:
$queryParams = array(':userName' => $_POST['username'], ':password' => $_POST['password'], ':salt'=>$userUser->salt, ':userEmail'=>$_POST['email']);
$registrationDb->query('tblUser', $queryParams);
数据库连接正常,正在写入,但是所有值都设置为$_POST['email]
,我不知道为什么会这样。
有没有更好的方法来做到这一点?
【问题讨论】:
【参考方案1】:bindParam
通过引用绑定变量,所以你需要bindValue
来代替:
$this->queryObject->bindValue($key, $value);
【讨论】:
以上是关于PDO::bindParam 在 foreach 循环中,所有值都设置为相同吗?的主要内容,如果未能解决你的问题,请参考以下文章
PHP PDO bindParam() 和 MySQL BIT
用于“IN”语句的变量/字符串的 PHP PDO bindParam...? [复制]