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 $str = "\n\n\nBonjour le monde !\n\n\n"; echo "Sans trim : " . $str; echo "<br>"; echo "Avec trim : " . trim($str); ?> </body> </html>
Sans coupe : Bonjour le monde !
With trim: Hello World!