mirror of
https://github.com/php/php-src.git
synced 2024-12-01 22:03:36 +08:00
13 lines
108 B
PHP
13 lines
108 B
PHP
--TEST--
|
|
Testing do-while loop
|
|
--FILE--
|
|
<?php
|
|
$i=3;
|
|
do {
|
|
echo $i;
|
|
$i--;
|
|
} while($i>0);
|
|
?>
|
|
--EXPECT--
|
|
321
|