diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/php/recurse.php')
-rw-r--r-- | debian/perl-framework/t/htdocs/php/recurse.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/php/recurse.php b/debian/perl-framework/t/htdocs/php/recurse.php new file mode 100644 index 0000000..3378bfb --- /dev/null +++ b/debian/perl-framework/t/htdocs/php/recurse.php @@ -0,0 +1,10 @@ +<?php Function Test() + { + static $a=1; + + echo "$a "; + $a++; + if($a<10): Test(); endif; + } + Test()?> + |