summaryrefslogtreecommitdiff
path: root/tests/lang/008.phpt
blob: 1e9c86ff5a9664e88ad577adeb57ebea916472d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Testing recursive function
--POST--
--GET--
--FILE--
<?php

function Test()
{
	static $a=1;
	echo "$a ";	
	$a++;
	if($a<10): Test(); endif;
}

Test();

?>
--EXPECT--
1 2 3 4 5 6 7 8 9