Home > Backend Development > PHP Tutorial > 在mysqli中判断结果集替空最最简单的方法是什么

在mysqli中判断结果集替空最最简单的方法是什么

WBOY
Release: 2016-06-13 12:42:51
Original
956 people have browsed it

在mysqli中判断结果集为空最最简单的方法是什么
我发现判断结果集不为空一般要这么写:

if($result->num_rows>0) { }

而不能这么写:

if($result)

我用var_dump($result);输出,结果是

 
object(mysqli_result)#2 (0) { }

可见,结果集为空时,$result是一个没有成员的空对象,我看了书上说,将object转换为布尔型时,没有成员的对象会转换成false,否则转换为true,为什么这里这个空对象不转换成false呢。

我还想问下 mysql 和PDO中判断结果集为空也得要判断记录数属性为0吗。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template