mirror of
https://github.com/php/php-src.git
synced 2024-11-30 05:13:56 +08:00
ef2608925c
alternative-syntax testfile.
15 lines
130 B
PHP
15 lines
130 B
PHP
--TEST--
|
|
Simple While Loop Test
|
|
--POST--
|
|
--GET--
|
|
--FILE--
|
|
<?php
|
|
$a=1;
|
|
while ($a<10) {
|
|
echo $a;
|
|
$a++;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
123456789
|