Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php $a = "Hello"; echo "a is " . is_string($a) . "<br>"; $b = 0; echo "b is " . is_string($b) . "<br>"; $c = 32; echo "c is " . is_string($c) . "<br>"; $d = "32"; echo "d is " . is_string($d) . "<br>"; $e = true; echo "e is " . is_string($e) . "<br>"; $f = "null"; echo "f is " . is_string($f) . "<br>"; $g = ""; echo "g is " . is_string($g) . "<br>"; ?> </body> </html>
a is 1
b is
c is
d is 1
e is
f is 1
g is 1