Heim >php教程 >php手册 >php中数字0和空值的区别分析

php中数字0和空值的区别分析

WBOY
WBOYOriginal
2016-06-06 20:22:121108Durchsuche

这篇文章主要介绍了php中数字0和空值的区别分析,用一个实例来供大家调戏,需要的朋友可以参考下

作为一个合格的php程序员,一些基础知识是必须要知道的,例如0和空的区别,关于这个区别,下面就通过几个实例进行简单的分析,其中的道理,只可意会,不可言传,读者可以自己去慢慢体会了。

复制代码 代码如下:


$test=0;

if($test==''){
 echo '
在php中,,0即为空'; //被输出
}

if($test===''){
 echo '
在php中,0即为空'; //不被输出
}

if($test==NULL){
 echo '
在php中,0即为空'; //被输出
}

if($test===NULL){
 echo '
在php中,0即为空'; //不被输出
}

if($test==false){
 echo '
在php中,0即为空'; //被输出
}

if($test===false){
 echo '
在php中,0即为空'; //不被输出
}

?>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn