English 中文(简体)
PDO 函数设置FetchMode
原标题:PDO Function setFetchMode

我是想和PDO一起发挥功能 但这里的代码是获取错误(新到PDO)

    function mail_id($mail){
    global $host, $dbname, $user, $pass;
    $DBH = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);
    $STH = $DBH->query("select count(from) from messages where from =  $mail ");
    $STH->setFetchMode(PDO::FETCH_ASSOC);
    $row = $STH->fetch();
    return $row;
}

我想数数一排 从这里,这是 外面,我正尝试

$mail=mail_id($userid);
if (0<count($mail[ to_viewed ])) {echo "green";} else {echo "gray";}

这就是错误

Call to a member function setFetchMode() on a non-object

请帮助帮助 Thx

最佳回答

您需要检查 < a href=> 的返回值 。 http:// www.php. net/ manual/ en/ pdo. query. php" rel= “ nofollow” {code> PDO::: query () 。 在 (ugly) PHP 中, 有许多函数返回混合型的值 。 在 < code> PDO:: < query > () 中, 返回类型是 < a href= > http:// www.php. net/ manual/ en/ clasul. pdostatement.phpp" rel= “nofol=\ Codection> pdocodement > pDO Statement 或bool, 尽管文件中的原型有不同之处:

Description:
PDOStatement PDO::query ( string $statement )
...

看起来它总是返回 PDO statement

Return Values:
PDO::query() returns a PDOStatement object, or FALSE on failure.

并非每个案例都如此! 因此您不能保证返回的值是 < code> PDODO statement

正确的原型是:

Description:
mixed PDO::query ( string $statement )
...

在您的情况下, 查询无效( 使用像从列名称这样的保留关键字), 它导致返回值为 FALSE 的布林字型的返回值。 布林值不是一个对象, 因此您调用 < code> $STH- & gt; setFetchMode () 失败 。

取决于您的 PDO: ATTR_ ERRMODE

  • an exception (PDO::ERRMODE_EXCEPTION), so you don t need to check the return value
  • a warning (PDO::ERRMODE_WARNING)
  • nothing (PDO::ERRMODE_SILENT), so you have to check the return value, errorCode() and errorInfo()
问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签