1 2 3 4 5 6 7 8 9 10 11 12
--TEST-- Testing do-while loop --FILE-- <?php $i=3; do { echo $i; $i--; } while($i>0); ?> --EXPECT-- 321