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 // créer un tableau $myArr = array("Volvo", 15, ["pommes", "bananes"]); echo "$myArr[0]<br>"; echo "$myArr[1]<br>"; echo "$myArr[2]"; ?> </body> </html>
Volvo
15
Array