摘要:
PHP中,在判断变量是否为空的时候,总会纠结应该选用哪个函数,下面列取常用的多种情况,其中1/3经过我的验证,其它来自网络,验证后使用。。。使用 PHP 函数对变量$x进行比较表达式gettype()empty()is_null()isset()if($x) Booleanis_null$x = "";stringTRUEFALSETRUEFALSEfalse$x = null;NULLTRUETRUEFALSEFALSEtruevar $x;NULLTRUETRUEFALSEFALSEtrue$xis undefinedNULLTRUETRUEFALSEFALSEtrue 阅读全文