标签:false get jce vps comm eth result blank bsp
is_null — 检测变量是否为 NULL
$var
)如果 var
是 null 则返回 TRUE
,否则返回 FALSE
。
举例:
$x="";
$result=is_null($x);//值为false
echo $result;//为空不打印
注意:空字符串:已经分配了存储空间,但是没有存储东西
NULL:没有分配存储空间。
两者是不一样的。
标签:false get jce vps comm eth result blank bsp
原文地址:http://www.cnblogs.com/457248499-qq-com/p/7357147.html