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 class greeting { public static function welcome() { echo "Bonjour le monde !"; } public function __construct() { self::welcome(); } } new greeting(); ?> </body> </html>
Bonjour le monde!