PHP操作数据库出现错误:mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in

Posted Rogn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP操作数据库出现错误:mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in相关的知识,希望对你有一定的参考价值。

原因在于你操作数据库出错了,但是却没有对应的出错处理。

解决方法是,在

$result = mysqli_query($conn, $sql);

后加上这样一段代码:

if (!$result) {
    printf("Error: %s\\n", mysqli_error($conn));
    exit();
}

之后刷新页面查看具体错误信息。

 

参考链接:

1. https://blog.csdn.net/weixin_41470917/article/details/84330581

2. https://www.cnblogs.com/cc18/p/6150335.html

以上是关于PHP操作数据库出现错误:mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given in的主要内容,如果未能解决你的问题,请参考以下文章

WRONGTYPE 对持有错误值 php 的键的操作

PHP 升级后出现 FastCGI 错误

php增加用户时出现的【SQLSTATE[HY000] [2002]

如何解决PHP 出现Warning: Cannot modify header information错误?

尝试在 php 中连接数据库,但出现语法错误

遇到IIS7配置PHP出现403和404错误的解决办法