Heim  >  Artikel  >  Backend-Entwicklung  >  php中数字0和空值的区别分析_PHP教程

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

WBOY
WBOYOriginal
2016-07-13 10:29:04809Durchsuche

作为一个合格的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即为空'; //不被输出
}

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/779561.htmlTechArticle作为一个合格的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