运行 ❯
获取您
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
进入 Spaces
<!DOCTYPE html> <html> <body> <?php $a = 32; echo "a is " . is_numeric($a) . "<br>"; $b = 0; echo "b is " . is_numeric($b) . "<br>"; $c = 32.5; echo "c is " . is_numeric($c) . "<br>"; $d = "32"; echo "d is " . is_numeric($d) . "<br>"; $e = true; echo "e is " . is_numeric($e) . "<br>"; $f = null; echo "f is " . is_numeric($f) . "<br>"; ?> </body> </html>