Home > Backend Development > PHP Tutorial > php null空值(转)

php null空值(转)

WBOY
Release: 2016-06-23 14:34:59
Original
1287 people have browsed it

null(空值):PHP中一种特殊的数据类型,表示空值,即表示没有为该变量设置任何值null(空值)不区分大小写,null和NULL是一样的。
被赋空值可能有三种情况:没有赋什么值、被赋空值null、被unset()函数处理过的变量(出处:《PHP从入门到精通》P47。

实例如下:
    echo  "变量($string1)直接赋值为null";
    $string=null;                                          //$string1被赋空值
    $string3="str";                                      //$string3被赋值str
    if(is_null($strig1=null)){                    //判断$string1是否为空
        echo 'string=null';
    }
    echo '

';
    echo '变量($string2)没有被赋值';
    if(is_null($string2=null)){                 //判断$string1是否为空
        echo 'string=null';
    }
    echo '

';
    echo '被unset()释放过的变量($string3):';
    unset($string3);
    if(is_null($string3=null)){//判断$string1是否为空
        echo 'string=null';
    }
?>

浏览器处理结果:
变量($string1)直接赋值为nullstring=null
变量($string2)没有被赋值string=null
被unset()释放过的变量($string3):string=null

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