我只是想確保THA如果傳遞FALSE
作爲參數傳遞給一個empty()
,它將返回TRUE
:PHP爲什麼我不能運行空(FALSE)代碼?
var_dump(empty(FALSE));
,但我不能。 這裏是我得到:
PHP Parse error: syntax error, unexpected ')', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in Command line code on line 1
當我運行這段代碼在CMD:
C:\>php -r "echo empty(FALSE);";
我得到了這樣的結果:
PHP Parse error: syntax error, unexpected ')', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in Command line code on line
Parse error: syntax error, unexpected ')', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in Command line code on line 1
我以爲我會要麼回聲1
或0
。但事實並非如此。 任何想法?
'empty'預期的變量。 – Kermit 2013-04-09 17:24:13
AH,好老'T_PAAMAYIM_NEKUDOTAYIM',我已經錯過了你 – OptimusCrime 2013-04-09 17:28:17