Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php $a = "Bonjour"; 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 est
c est
d est 1
e est
f est 1
g est 1