Run ❯
Get your
own PHP
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
"; $b = 0; echo "b is " . is_numeric($b) . "
"; $c = 32.5; echo "c is " . is_numeric($c) . "
"; $d = "32"; echo "d is " . is_numeric($d) . "
"; $e = true; echo "e is " . is_numeric($e) . "
"; $f = null; echo "f is " . is_numeric($f) . "
"; ?>