PHP基础知识空值null的使用

功能要求

定义字符串变量$string1直接赋值为null;使用没有被声明和赋值的变量$string2;定义字符串$string3被赋予初始值为“str”,但对字符串变量$string3使用unset()函数处理,分别将打印前$string3的值和使用后$string3的值输出。

实例代码

!doctypehtml

html

head

metacharset="utf-8"

title被赋值为null的几种情况/title

/head

body

?php

echo"变量(\$string1)直接赋值为null:";

$string1=null;

$string3="str";

if(is_null($string1)){

echo"string1=null";

}

echo"p变量(\$string2)未被赋值:";

if(is_null($string2)){

echo"string2=null";

}

echo"p被unset()函数处理过的变量(\$string3):";

unset($string3);

if(is_null($string3)){

echo"string3=null";

}

?

/body

运行结果

知识说明

空值表示没有为该变量设置任何值。另外,空值(null)不区分大小写,null和NULL效果是一样的。被赋值空值的情况有以下三种:还没有赋任何值、被赋值null、被unset()函数处理过的变量。unset()函数的作用就是从内存中删除变量。

说明:is_null()函数是判断变量是否为null,该函数返回一个boolean型,如果变量为null,则返回true,否则返回false。unset()函数用来销毁指定的变量。

注意:从PHP4.0开始,unset()函数就不再有返回值,不要试图获取或输出unset()。




转载请注明:http://www.aierlanlan.com/rzdk/4629.html