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 ob_start(); echo "Bonjour le monde !"; $contents = ob_get_flush(); echo "<br>"; echo "Le contenu du tampon était : "; echo $contents; ?> </body> </html>
Hello World!
Le contenu du tampon était : Hello World!