<?php $str = array("aaa","bbb","ccc");
$i = 0; while ( $i < count($str) ) { echo "$str[$i]\n"; $i++; } ?>
<?php while (true) { echo "無限ループ\n"; } ?>