for文使えってのはなしで、上と下どっちが好きですか?

$i = 0;
while ($i < 30) {
 $i++;
 echo $i;
}

do {
 static $i = 0;
 $i++;
 echo $i;
} while ($i < 30);