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 interface Animal { public function makeSound(); } class Cat implements Animal { public function makeSound() { echo "Miaou"; } } $animal = new Cat(); $animal->faireDuBruit(); ?> </body> </html>
Miaou