熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

解析PHP中empty is

2022-06-13   來源: PHP編程 

  代碼如下:

復制代碼 代碼如下:
<?php
$a;
$b = false;
$c = ;
$d = ;
$e = null;
$f = array();

  
首先是empty的var_dump輸出:
boolean true
boolean true
boolean true
boolean true
boolean true
boolean true

  然後是is_null的輸出:
boolean true
boolean false
boolean false
boolean false
boolean true
boolean false

  最後是isset的輸出:
boolean false
boolean true
boolean true
boolean true
boolean false
boolean true
由此可見 empty() 可以用來判定所有的數據類型是否為空或假而 is_null 與 isset 基本一樣只能用來判斷是否為NULL和未定義


From:http://tw.wingwit.com/Article/program/PHP/201311/21127.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.