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 // Utilisation de define() define("CARS", array("Volvo", "BMW", "Toyota")); echo CARS[0]; echo "<br>"; // Utilisation de const const ANIMALS = array("Chat", "Chien", "Cheval"); echo ANIMALS[1]; ?> </body> </html>
Volvo
Dog