gpt4 book ai didi

php - 如何避免CodeIgniter中的 "mysqli_num_rows() expects parameter 1 to be mysqli_result, object given"

转载 作者:行者123 更新时间:2023-11-29 06:55:55 24 4
gpt4 key购买 nike

我正在为我的项目使用 CodeIgniter。在模型中,我编写了一个函数来验证类似数据是否可用。我也使用过 rowcount() 。但我无法解决问题。这是我的代码:

public function  student_verification()
{
$email = $this->input->post('email');
$verification = $this->input->post('verification');
$row = $this->db->query("SELECT * FROM student_sign_up WHERE email = '$email' AND verification = '$verification' ");
if(mysql_num_rows($row)>0)
return true;
else
return false;

最佳答案

请使用 $row->num_rows(); 而不是 mysql_num_rows($row)

看这里https://www.codeigniter.com/userguide3/database/results.html .

它将返回行数。

关于php - 如何避免CodeIgniter中的 "mysqli_num_rows() expects parameter 1 to be mysqli_result, object given",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45651354/

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