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_array($a) . "<br>"; $b = array("rouge", "vert", "bleu"); echo "b is " . is_array($b) . "<br>"; $c = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43"); echo "c is " . is_array($c) . "<br>"; $d = "rouge, vert, bleu"; echo "d is " . is_array($d) . "<br>"; ?> </body> </html>
a is
b est 1
c est 1
d est