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 trait message1 { public function msg1() { echo "La POO est amusante ! "; } } class Welcome { utilisez message1 { message1::msg1 en tant que msg; } } $obj = new Welcome(); $obj->msg(); ?> </body> </html>
OOP est amusant !