未定义fetchAll并在返回的PDOStatement中获取

时间:2012-10-30 17:51:05

标签: php mysql pdo undefined

我刚开始使用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甚至没有声明的通知。 我也没有任何例外。

1 个答案:

答案 0 :(得分:8)

您需要使用带括号的方法调用:

$sth->fetchAll();

或$ sth-&gt; fetch();

不仅仅是

$sth->fetchAll;

PHP认为你试图点击一个名为fetchAll的属性!