mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
af316021e8
The full patch is available as: http://php.net/~helly/php-re2c-5.3-20080316.diff.txt This is against php-re2c repository version 98 An older patch against version 97 is available under: http://php.net/~helly/php-re2c-97-20080316.diff.txt
26 lines
607 B
PHP
26 lines
607 B
PHP
--TEST--
|
|
Apache style CGI with PATH_INFO
|
|
--DESCRIPTION--
|
|
Apache likes to set SCRIPT_FILENAME to the php executable
|
|
if you use ScriptAlias configurations, and the proper
|
|
path is in PATH_TRANSLATED. SCRIPT_NAME in this is faked,
|
|
but that is ok, Apache sets SCRIPT_NAME to the ScriptAlias
|
|
of the executable.
|
|
--REQUEST--
|
|
return <<<END
|
|
PATH_INFO=/path/info
|
|
END;
|
|
--ENV--
|
|
return <<<END
|
|
REDIRECT_URL=/path
|
|
PATH_TRANSLATED=/path/info/fpp
|
|
PATH_INFO=/path/info
|
|
SCRIPT_NAME=/scriptalias/php
|
|
SCRIPT_FILENAME=$this->conf['TEST_PHP_EXECUTABLE']
|
|
END;
|
|
--FILE--
|
|
<?php
|
|
echo $_SERVER['PATH_INFO'];
|
|
?>
|
|
--EXPECT--
|
|
/path/info
|