运行 ❯
获取你
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <?php $a = 0; echo "a is " . is_null($a) . "<br>"; $b = null; echo "b is " . is_null($b) . "<br>"; $c = "null"; echo "c is " . is_null($c) . "<br>"; $d = NULL; echo "d is " . is_null($d) . "<br>"; ?> </body> </html>