Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
php
/
lookup2.php
blob: f4f74ef116398a521053d0a0ef29da4219f75383 [
file
]
<?
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
);
?>