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 MyClass { public static $str = "Bonjour le monde!"; public static function hello() { echo MyClass::$str; } } echo MyClass::$str; echo "<br>"; echo MyClass::hello(); ?> </body> </html>
Hello World!
Bonjour le monde !