10 lines
183 B
PHP
10 lines
183 B
PHP
<?php Function Test()
|
|
{
|
|
static $a=1;
|
|
|
|
echo "$a ";
|
|
$a++;
|
|
if($a<10): Test(); endif;
|
|
}
|
|
Test()?>
|
|
|