Browse Source

Merge branch 'PHP-5.4'

pull/167/head
Xinchen Hui 14 years ago
parent
commit
75cf51de50
  1. 4
      sapi/cgi/tests/apache_request_headers.phpt

4
sapi/cgi/tests/apache_request_headers.phpt

@ -17,12 +17,12 @@ $file = dirname(__FILE__)."/012.test.php";
file_put_contents($file, '<?php print_r(apache_request_headers()); ?>');
passthru("$php $file");
passthru("$php -n $file");
$names = array('HTTP_X_TEST', 'HTTP_X__TEST', 'HTTP_X_');
foreach ($names as $name) {
putenv($name."=".str_repeat("A", 256));
passthru("$php -q $file");
passthru("$php -n -q $file");
putenv($name);
}
unlink($file);

Loading…
Cancel
Save