2008年12月17日

PHP empty 和 isset 的分別

實際上就是
empty($x) 等於 !isset($x) || !$x
!empty($x) 等於 isset($x) && $x


手冊說得挺詳細
http://ca.php.net/manual/zh/function.empty.php