Hyvor Developer
Home
Download
Copy
Code
<?php /*break on 5 */ $a = 0; while ($a < 10) { echo $a . '<br>'; if ($a === 5) { break; } $a++; }
Result