gpt4 book ai didi

php - 在非对象上调用成员函数 fetchAll()

转载 作者:太空宇宙 更新时间:2023-11-03 10:52:44 24 4
gpt4 key购买 nike

<分区>

我不知道为什么它会返回 Call to a member function fetchAll() on a non-object 错误,因为我在 _sth 对象上使用了 fetchAll 方法。

有人知道它为什么这样做吗?

表单验证器 PHP

$users = $this->_db->query("SELECT * FROM $ruleValue WHERE $input = ?", array($inputValue));
if($users->count()) {
$this->addError($input, $rule);
}

方法

public function query($sql, $params = array()) {
$this->_sth = $this->_dbh->prepare($sql);

if($this->_sth = $this->_sth->execute($params)) {
return $this->_sth->fetchAll(PDO::FETCH_OBJ);
}

return false;
}

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