-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/lang/
File Upload :
Current File : //usr/src/php/tests/lang/008.phpt

--TEST--
Testing recursive function
--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 

Copyright © 2017 || Recoded By Mr.Bumblebee