diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/php/if2.php')
-rw-r--r-- | debian/perl-framework/t/htdocs/php/if2.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/php/if2.php b/debian/perl-framework/t/htdocs/php/if2.php new file mode 100644 index 0000000..612718c --- /dev/null +++ b/debian/perl-framework/t/htdocs/php/if2.php @@ -0,0 +1,11 @@ +<?php $a = 1; +old_function Test $a ( + if($a<3): + return(3); + endif; +); + +if($a < Test($a)): + echo "$a\n"; + $a++; +endif?> |