diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/php/regression3.php')
-rw-r--r-- | debian/perl-framework/t/htdocs/php/regression3.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/php/regression3.php b/debian/perl-framework/t/htdocs/php/regression3.php new file mode 100644 index 0000000..703cf9b --- /dev/null +++ b/debian/perl-framework/t/htdocs/php/regression3.php @@ -0,0 +1,22 @@ +<?php +old_function RekTest $nr ( + +echo " $nr "; + + +$j=$nr+1; +while ($j < 10) +{ + echo " a "; + RekTest($j); + $j++; + echo " b $j "; +}; +echo "\n"; + + + +); + +RekTest(0); +?> |