我刚开始使用PDO并且已经在几个教程中查找答案,但我无法使其正常工作。
我得到了
Notice: Undefined property: PDOStatement::$fetch in E:\-------- on line 22
Result: 1
与
$dsn = "mysql:host=localhost;dbname=the_database;";
try {
$dbh = new PDO($dsn, "root", "");
$dbh->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
} catch (PDOException $e){
die( "failed conexion: ".$e->getMessage() );
}
$query = "SELECT MAX(price) AS max, MIN(price) AS min FROM cellphones";
try {
$sth = $dbh->prepare($query);
$sth->execute();
$sth->setFetchMode(PDO::FETCH_ASSOC);
$result = $sth->fetchAll;
}
catch(PDOException $e){
echo $e->getMessage();
}
die( "<br />Result: ".print_r($result, true) );
我用
得到了相同的结果$sth = $dbh->query($query);
$result = $sth->fetchAll;
和
$sth = $dbh->prepare($query);
$sth->execute();
$result = $sth->fetch;
我得到的是它可能会返回结果计数 但为什么?为什么它给我一个关于fetch / fetchAll甚至没有声明的通知。 我也没有任何例外。
答案 0 :(得分:8)
您需要使用带括号的方法调用:
$sth->fetchAll();
或$ sth-&gt; fetch();
不仅仅是
$sth->fetchAll;
PHP认为你试图点击一个名为fetchAll的属性!