gpt4 book ai didi

php - PDO 传递参数作为数组失败

转载 作者:行者123 更新时间:2023-11-29 11:42:10 25 4
gpt4 key购买 nike

有人可以解释为什么下面的注释行作为常规查询工作正常,但当我尝试使用准备语句传递它时失败?

(所有代码都在一个文件中)

<?php
class Log {

public $id;
public $sensor;
public $reading;

public function getRow() {
return $this->id.' '.$this->sensor.' '.$this->reading;
}
}

try
{
$dbh = new PDO("mysql:host=localhost;dbname=homelog", "xxx", "yyy");
//$rs = $dbh->query("SELECT * FROM logs WHERE id=1"); //WORKS FINE
//PREPARE
$stmt = $dbh->prepare("SELECT * FROM logs WHERE id= :x");
$arr=array(':x'=>'1');
$rs=$stmt->execute($arr);
//END PREPARE

$rs->setFetchMode(PDO::FETCH_INTO, new Log());
foreach($rs as $l)
{
echo $l->getRow().'<br />';
}
$dbh = null;
}
catch(PDOException $e)
{
echo $e->getMessage();
}
?>

错误日志报告(感谢评论者):

[Wed Feb 24 00:05:59 2016] [error] [client 66.55.xxx.yyy] PHP Fatal error:  Call to a member function setFetchMode() on a non-object in /var/www/PiServer/testObj.php on line 24

更新代码以响应答案:

....
$dbh = new PDO("mysql:host=localhost;dbname=homelog", "root", "root");
//$rs = $dbh->query("SELECT * FROM logs WHERE id=1"); //WORKS FINE
//PREPARE
$stmt = $dbh->prepare("SELECT * FROM logs WHERE id= :x");
$arr=array(':x'=>'1');
$rs=$stmt->execute($arr); //bool result value
//END PREPARE
$ret=$stmt->fetchObject("Log")
foreach($ret as $l)
{
echo $l->getRow().'<br />';
}
$dbh = null;
.....

最佳答案

PDOStatement::execute() 不返回结果集,它只是返回一个 bool 值,指示查询是否成功。然后,您的代码尝试对该 bool 值调用 setFetchMode(),这当然是无效的。

为了获取查询结果,您需要调用 PDOStatement::fetch* 方法之一。我怀疑你想做的是

while ($l = $stmt->fetchObject("Log"))
{
echo $l->getRow().'<br />';
}

这也消除了调用 setFetchMode() 的需要。

(我承认我从未使用过 fetchObject(),所以我的语法可能不完全正确。)

关于php - PDO 传递参数作为数组失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35593472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com