diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/php/stack.php')
-rw-r--r-- | debian/perl-framework/t/htdocs/php/stack.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/php/stack.php b/debian/perl-framework/t/htdocs/php/stack.php new file mode 100644 index 0000000..04c3198 --- /dev/null +++ b/debian/perl-framework/t/htdocs/php/stack.php @@ -0,0 +1,13 @@ +<?php +old_function F ( + if(1): + return("Hello"); + endif; +); + +$i=0; +while($i<2): + echo F(); + $i++; +endwhile; +?> |