執行 ❯
獲取您
自己的 PHP
伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php // A variable that does not exist if(empty($x)) { echo '$x does not exist<br>'; } // An empty integer if(empty(0)) { echo '0 is empty<br>'; } // An empty float if(empty(0.0)) { echo '0.0 is empty<br>'; } // An empty string if(empty("")) { echo '"" is an empty string<br>'; } // null if(empty(null)) { echo 'null is empty<br>'; } // A value that is not empty if(empty('A')) { echo '"A" is empty<br>'; } else { echo '"A" is not empty<br>'; } ?> </body> </html>
$x 不存在
0 是空的
0.0 是空的
"" 是一個空字串
null 是空的
"A" 不是空的