13 lines
118 B
Plaintext
13 lines
118 B
Plaintext
|
|
--TEST--
|
||
|
|
Simple While Loop Test
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$a=1;
|
||
|
|
while ($a<10) {
|
||
|
|
echo $a;
|
||
|
|
$a++;
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
123456789
|