t/htdocs/php/recurse.php (8 lines of code) (raw):

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