2

只要我在 WHERE 子句中只指定一项,这个函数就可以正常工作。如果有多个,它总是返回 0。

这是功能:

function count_rows($table, $where=array()){
    $sql = "SELECT COUNT(*) FROM `$table`";
    if(!empty($where)){
        $sql .= " WHERE (";
        foreach($where as $key=>$value){
            $sql .="`". $key . "`=:w_" . $key . " AND ";
        }
        $sql = substr($sql, 0, -4);
        $sql .= ") ";
    }
    $stmt = $this->conn->prepare($sql);
    foreach($where as $key=>$value){
        $stmt->bindParam(":w_".$key, $value);
    }
    $stmt->setFetchMode(PDO::FETCH_ASSOC);
    $stmt->execute();
    $this->stmt = $stmt; 
    return $this->stmt->fetchColumn();

}

例如,以下返回list_id设置为 $list_id 的行数:

$email_count = count_rows("emails", array("list_id"=>$list_id));

然而,在 WHERE 子句中使用两个条件,无论如何都会导致它返回 0:

$optout_count = count_rows("emails", array("list_id"=>$list_id, "optout"=>"1"));

我已经尝试过使用和不使用 WHERE 子句周围的括号,并且我使用的调试函数正确显示了查询。我还尝试在数组中的值周围加上引号。任何帮助,将不胜感激。

4

1 回答 1

3

PDOStatement::bindParam绑定对变量的引用。与 不同PDOStatement::bindValue()的是,该变量被绑定为引用,并且只会在PDOStatement::execute()调用时进行评估。


解决方案:

只是改变

$stmt->bindParam(":w_".$key, $value);

$stmt->bindValue(":w_".$key, $value);
于 2013-05-07T03:14:05.940 回答