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 function printFormatted(callable $format, $str) { echo $format($str); echo "<br>"; } function exclaim($str) { return $str . "!"; } printFormatted("exclaim", "Bonjour le monde"); ?> </body> </html>
Bonjour le monde !