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_contents(); ob_end_clean(); echo "Le contenu du tampon est : "; echo $contents; ?> </body> </html>
Le contenu du tampon est : Hello World!