<!--中间数组和对象在以后第7章和第14章可以学到这里书上略过--> <!--特殊数据类型包括资源和空值--> <!--资源通过专门的函数来建立和使用--> <!--空值null3种情况,没赋任何值,被赋值null,被unset()函数销毁--> <?php error_reporting(E_ALL ^ E_NOTICE); //忽略错误 $string1 = null; $string3 = "str"; if(is_null($string1)) //is_null()函数是判断变量是否为空 echo '$string1 = null'; if(is_null($string2)) echo '$string2 = null'; unset($string3); //销毁$string3变量 没有值了变为null if(is_null($string3)) echo '$string3 = null'; ?>
위 내용은 PHP 자가 학습에서 특수 데이터 유형 no00010의 null 값에 대한 내용을 포함하여 소개되었으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.