<?php
$i = 0;
while(true){
    if($i == 5){
        break;
    }
    echo $i;
    $i++;
}
?>