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 $i = 0; do { $i++; if ($i == 3) continue; echo $i; } while ($i < 6); ?> </body> </html>
12456