" if($ result-> num_rows> 0)"试图在第17行的结果中获取C:\ xampp \ htdocs \ view.php中非对象的属性0结果

时间:2017-11-09 02:16:40

标签: php mysqli xampp

" if($ result-> num_rows> 0)"试图在第17行的C:\ xampp \ htdocs \ view.php中获取非对象的属性

这件事情一直在发生,我不知道下一步该做什么?

1 个答案:

答案 0 :(得分:-2)

可能是你的$ result为null 请在获取num_rows之前检查$ result 使用:

if (!is_null($result) && $result->num_rows > 0)

而不是:

if ($result->num_rows > 0)