dousou2897 2014-03-28 20:22
浏览 356
已采纳

致命错误:调用未定义的方法mysqli :: num_rows()[复制]

This question already has an answer here:

Hi I am requesting help with my PHP. I checked the code through and I couldn't spot any errors in it.

I'm not that great with PHP, and I hope any of you could help.

It should return either false or true but, I get this error

Fatal error: Call to undefined method mysqli::num_rows()

Here is my code:

$mysqli is my mysqli database connector.

$email = $_SESSION["email"];

function isbanned($email){
    global $mysqli;
    if($mysqli->num_rows("SELECT * FROM `user_bans` WHERE `banned_id` = '".$email."' LIMIT 1") > 0){
        return true;
    }
    return false;
}

isbanned($email);

That's all my code for the banned script.

Thanks in advance.

</div>
  • 写回答

2条回答 默认 最新

  • dongzhuo0895 2014-03-28 20:24
    关注

    That's not how that function is used. First you execute your query and then you check to see how many rows were returned from the returned result object:

    $result = $mysqli->query("SELECT * FROM `user_bans` WHERE `banned_id` = '".$email."' LIMIT 1");
    if($result->num_rows > 0){
        return true;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵