刪除變量時unset()和null的區別

PHP中刪除變量時unset()和null的區別 unset()會銷燬變量 =null並未銷燬變量,只是未賦值php $str=''; isset($str);//結果爲true,變量值有值,只是值爲空 $str=NULL; isset($str);//結果爲false,變量未賦值 <?php $arrayA = array('a'=>'1111','b'=>'22222'); $arrayB
相關文章
相關標籤/搜索