运行 ❯
获取您的
自有 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" 不为空