blob: b824bfb18d760a32bf35100ec75411a2032eccf1 [file]
<?php
$i=3;
do {
echo $i;
$i--;
} while($i>0);
?>