diff options
Diffstat (limited to 'debian/perl-framework/t/htdocs/php/lookup2.php')
-rw-r--r-- | debian/perl-framework/t/htdocs/php/lookup2.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/perl-framework/t/htdocs/php/lookup2.php b/debian/perl-framework/t/htdocs/php/lookup2.php new file mode 100644 index 0000000..f4f74ef --- /dev/null +++ b/debian/perl-framework/t/htdocs/php/lookup2.php @@ -0,0 +1,8 @@ +<?php +header("X-Before: foobar"); +$r = apache_lookup_uri("target.php"); +header("X-After: foobar"); + +printf("status=%d:method=%s:uri=%s", + $r->status, $r->method, $r->uri); +?> |