DEBSOURCES
Skip Quicknav
sources / apache2 / 2.4.66-2 / debian / perl-framework / t / htdocs / php / recurse.php
12345678910
<?php Function Test() { static $a=1; echo "$a "; $a++; if($a<10): Test(); endif; } Test()?>