调用未定义的函数apache_request_headers()

我刚刚将我的脚本切换到不同的服务器。 在以前的服务器上,这工作完美,现在,我已经把他们切换到不同的服务器,我不明白这个问题。

我不确定这会有帮助,但是这是相关的代码。

$headers = apache_request_headers();

PHP版本是:PHP 5.3.2

任何帮助,将不胜感激。

从文档中 ,PHP 5.4.0发布之前:

仅当PHP作为Apache模块安装时才支持该function。

PHP 5.4.0和更高版本无条件地支持这个function。

所述文档还包括通过逐步$_SERVER模拟apache_request_headersfunction的replacefunction。

您可以使用以下replacefunction:

 <?php if( !function_exists('apache_request_headers') ) { /// function apache_request_headers() { $arh = array(); $rx_http = '/\AHTTP_/'; foreach($_SERVER as $key => $val) { if( preg_match($rx_http, $key) ) { $arh_key = preg_replace($rx_http, '', $key); $rx_matches = array(); // do some nasty string manipulations to restore the original letter case // this should work in most cases $rx_matches = explode('_', $arh_key); if( count($rx_matches) > 0 and strlen($arh_key) > 2 ) { foreach($rx_matches as $ak_key => $ak_val) $rx_matches[$ak_key] = ucfirst($ak_val); $arh_key = implode('-', $rx_matches); } $arh[$arh_key] = $val; } } return( $arh ); } /// } /// ?> 

来源: PHP手册

如果php安装为Apache模块

 apache_request_headers()["Authorization"]; 

否则,转到.htaccess文件并添加:

 SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 

然后您可以使用以下任何一种访问请求标头:

 $_SERVER["HTTP_AUTHORIZATION"]; // using super global 

要么

 $app->request->headers("Authorization"); // if using PHP Slim 

当我使用“apache_request_headers()”时,同样的事情发生在我身上,所以我使用这个代码 – 完美地为我输出所有的标题:

 <?php $headers = array(); foreach($_SERVER as $key => $value) { if(strpos($key, 'HTTP_') === 0) { $headers = str_replace(' ', '-', ucwords(str_replace('_', ' ', strtolower(substr($key, 5))))); echo $headers." : ". $i[$headers] = $value . "<br>"; } } ?> 

输出示例:

 Accept : text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding : gzip, deflate Accept-Language : en-US,en;q=0.5 Cache-Control : max-age=0 Connection : keep-alive Host : example.com Referer : https://example.com/ User-Agent : Mozilla/5.0 (Windows NT 6.1; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0 

正如在这里的其他答案中所build议的 ,我已经使用了PHP文档中注释的function,但是发现它不是最佳的,难以读取/维护,并且与某些头文件的(不一致的)封套相比并不完整。

所以,因为我需要真的能够依靠它,所以我把它记得更明显,并且更好地处理更多边缘案例 – 原始代码甚至规定“做一些讨厌的string操作来恢复原始的字母大小写”“这应该在大多数情况下工作“ ,这听起来不错,你应该能够依靠。

这并不完美,但我发现它更可靠。 它缺乏的一件事是处理实际的或原始的头文件,因为对$_SERVER任何修改都会反映在输出中。 这可以通过使结果静态并在每个请求上首先运行函数来缓解。

 <?php // Drop-in replacement for apache_request_headers() when it's not available if(!function_exists('apache_request_headers')) { function apache_request_headers() { // Based on: http://www.iana.org/assignments/message-headers/message-headers.xml#perm-headers $arrCasedHeaders = array( // HTTP 'Dasl' => 'DASL', 'Dav' => 'DAV', 'Etag' => 'ETag', 'Mime-Version' => 'MIME-Version', 'Slug' => 'SLUG', 'Te' => 'TE', 'Www-Authenticate' => 'WWW-Authenticate', // MIME 'Content-Md5' => 'Content-MD5', 'Content-Id' => 'Content-ID', 'Content-Features' => 'Content-features', ); $arrHttpHeaders = array(); foreach($_SERVER as $strKey => $mixValue) { if('HTTP_' !== substr($strKey, 0, 5)) { continue; } $strHeaderKey = strtolower(substr($strKey, 5)); if(0 < substr_count($strHeaderKey, '_')) { $arrHeaderKey = explode('_', $strHeaderKey); $arrHeaderKey = array_map('ucfirst', $arrHeaderKey); $strHeaderKey = implode('-', $arrHeaderKey); } else { $strHeaderKey = ucfirst($strHeaderKey); } if(array_key_exists($strHeaderKey, $arrCasedHeaders)) { $strHeaderKey = $arrCasedHeaders[$strHeaderKey]; } $arrHttpHeaders[$strHeaderKey] = $mixValue; } return $arrHttpHeaders; } }