php-src/sapi/cgi/tests/009.phpt
Arnaud Le Blanc a772d7c3ef MFH
2009-04-24 19:48:41 +00:00

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