t/htdocs/php/do-while.php (
7
lines of code) (
raw
):
<?php $i=3; do { echo $i; $i--; } while($i>0); ?>