mirror of
https://github.com/php/php-src.git
synced 2025-01-23 04:04:16 +08:00
31 lines
523 B
PHP
31 lines
523 B
PHP
--TEST--
|
|
path info request without exported PATH_INFO
|
|
--SKIPIF--
|
|
<?php include "skipif.inc"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
include "include.inc";
|
|
|
|
$php = get_cgi_path();
|
|
reset_env_vars();
|
|
|
|
$f = tempnam(sys_get_temp_dir(), 'cgitest');
|
|
|
|
putenv("TRANSLATED_PATH=".$f."/x");
|
|
putenv("SCRIPT_FILENAME=".$f."/x");
|
|
file_put_contents($f, '<?php var_dump($_SERVER["TRANSLATED_PATH"]); ?>');
|
|
|
|
echo (`$php -n $f`);
|
|
|
|
echo "Done\n";
|
|
|
|
@unlink($f);
|
|
?>
|
|
--EXPECTF--
|
|
X-Powered-By: PHP/%s
|
|
Content-type: text/html%r; charset=.*|%r
|
|
|
|
string(%d) "%s/x"
|
|
Done
|