$a, $b=null, $c=false, $d="", $e=0, $f=[],以上变量分别使用 is_null, isset, empty 方法 会输出什么?
- $null = null;
- $zero = 0;
- $empty_arr = [];
- $false = false;
- $empty_str = "";
- $not_defintd;
-
- isset($not_defintd) false
- isset($zero) true
- isset($null) false
- isset($false) true
- isset($empty_arr) true
- isset($empty_str) true
-
- empty($not_defintd) true
- empty($zero) true
- empty($null) true
- empty($false) true
- empty($empty_arr) true
- empty($empty_str) true
-
-
- Notice: Undefined variable: not_defintd in /opt/webroot/test.php on line 27
- is_null($not_defintd) true
- is_null($zero) false
- is_null($null) true
- is_null($false) false
- is_null($empty_arr) false
- is_null($empty_str) false
解压密码: detechn或detechn.com
免责声明
本站所有资源出自互联网收集整理,本站不参与制作,如果侵犯了您的合法权益,请联系本站我们会及时删除。
本站发布资源来源于互联网,可能存在水印或者引流等信息,请用户自行鉴别,做一个有主见和判断力的用户。
本站资源仅供研究、学习交流之用,若使用商业用途,请购买正版授权,否则产生的一切后果将由下载用户自行承担。