答案 0 :(得分:16)
从文档页面,首先评论:
if( !function_exists( 'http_parse_headers' ) ) {
function http_parse_headers( $header )
{
$retVal = array();
$fields = explode("\r\n", preg_replace('/\x0D\x0A[\x09\x20]+/', ' ', $header));
foreach( $fields as $field ) {
if( preg_match('/([^:]+): (.+)/m', $field, $match) ) {
$match[1] = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', strtolower(trim($match[1])));
if( isset($retVal[$match[1]]) ) {
$retVal[$match[1]] = array($retVal[$match[1]], $match[2]);
} else {
$retVal[$match[1]] = trim($match[2]);
}
}
}
return $retVal;
}
}
或者,您可能想了解如何在Windows上安装PECL扩展,说实话,我对此一无所知。
答案 1 :(得分:9)
您可以在
获取Windows的扩展程序这是php_http-5.3-*-x86.zip
个文件之一。检查您安装的PHP并选择正确的PHP,例如我的PHP是php-5.3.6- nts-Win32-VC9 -x86,所以我需要php_http-5.3- nts-svn20091125-vc9 -x86.zip。< / p>
下载zip并将php_http.dll解压缩到您的扩展文件夹。扩展文件夹应该是php安装目录中的/ ext文件夹。如果您不确定,请打开您的php.ini文件并搜索以下行:
; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
; extension_dir = "./"
; On windows:
extension_dir = .\ext
extension_dir的值是您必须放置dll的位置。如果您不确定php.ini的位置,请打开命令提示符并执行
php --ini
这会告诉你php.ini的位置。它将输出类似
的内容Configuration File (php.ini) Path: C:\Windows
Loaded Configuration File: C:\php5\php-5.3.6-nts-Win32-VC9-x86\php.ini
Scan for additional .ini files in: (none)
Additional .ini files parsed: (none)
复制dll后,将扩展名添加到php.ini中以启用它。找到它所说的内容
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
应该有多条与此相似的行:
;extension=php_sybase_ct.dll
extension=php_tidy.dll
;extension=php_xmlrpc.dll
extension=php_xsl.dll
;extension=php_zip.dll
添加以下行:
extension=php_http.dll
保存php.ini并在命令提示符下键入以下内容:
php --ri http
您现在应该从
开始获得相当广泛的输出http
HTTP Support => enabled
Extension Version => 1.7.0-dev
… more stuff
这意味着,您已成功安装了扩展程序,现在可以使用它。
请注意,为了能够在Windows上加载此扩展,您还需要加载以下PHP扩展:hash,iconv和SPL。
答案 2 :(得分:9)
这也取决于PHP Documentation for http_parse_headers。当我将其与@Berry Langerak的答案(使用microtime
)进行比较时,我发现使用10个标头的样本(可能是因为它不使用正则表达式)平均快17%。
if (!function_exists('http_parse_headers')) {
function http_parse_headers($raw_headers) {
$headers = array();
$key = '';
foreach(explode("\n", $raw_headers) as $i => $h) {
$h = explode(':', $h, 2);
if (isset($h[1])) {
if (!isset($headers[$h[0]]))
$headers[$h[0]] = trim($h[1]);
elseif (is_array($headers[$h[0]])) {
$headers[$h[0]] = array_merge($headers[$h[0]], array(trim($h[1])));
}
else {
$headers[$h[0]] = array_merge(array($headers[$h[0]]), array(trim($h[1])));
}
$key = $h[0];
}
else {
if (substr($h[0], 0, 1) == "\t")
$headers[$key] .= "\r\n\t".trim($h[0]);
elseif (!$key)
$headers[0] = trim($h[0]);
}
}
return $headers;
}
}
注意:这包括作者在稍后的评论中指出的small mistake的修复程序。
正则表达式功能
0.00035881996
0.00036096572
0.00034999847
0.00043797492
0.00033497810
平均值:0.000368547434
此功能
0.00006198883
0.00006604194
0.00007104873
0.00006413459
0.00006389617
平均0.000065422052
答案 3 :(得分:2)
由于我找不到任何与PECL完全相同的功能,我写了自己的功能,与其他功能相比,结果非常快......
function dirtyHeaderParser($headers, $strict = true){
$arr = array();
$s = strtok($headers, ':');
while ($s){
if ( ($s[0] === ' ') || ($s[0] === "\t") ){
if (count($arr) != 0){
$tail = strtok('');
$tail = "{$s}:{$tail}";
$v = strtok($tail, "\n");
if (is_array($arr[$key])){
end($arr[$key]);
$last = key($arr[$key]);
$arr[$key][$last] = "{$arr[$key][$last]}\n{$v}";
reset($arr[$key]);
} else {
$arr[$key] = "{$arr[$key]}\n{$v}";
}
}
} else {
$v = strtok("\n");
if ($v){
$key = strtolower($s);
if (((strpos($key, "\n") !== false) || (strpos($key, "\t") !== false) || (strpos($key, " ") !== false)) && $strict) {
return false;
}
if (array_key_exists($key, $arr)){
if (!is_array($arr[$key])){
$arr[$key] = array($arr[$key]);
}
$arr[$key][] = trim($v);
} else {
$arr[$key] = trim($v);
}
} else {
break;
}
}
$s = strtok(':');
}
return (count($arr) == 0) ? false : $arr;
}
严格模式表示如果标题键包含false
,空格或\n
,则会返回\t
。
它支持多行标题和双标题值(也有多行),如果有人发现不像PECL版本的行为,我会很高兴你留下评论。
答案 4 :(得分:1)
以下是文档页面的修改版本,其工作方式与PECL版本类似:)
function http_parse_headers( $header ) {
$retVal = array();
$fields = explode("\r\n", preg_replace('/\x0D\x0A[\x09\x20]+/', ' ', $header));
foreach( $fields as $field ) {
if( preg_match('/([^:]+): (.+)/m', $field, $match) ) {
$match[1] = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', strtolower(trim($match[1])));
if( isset($retVal[$match[1]]) ) {
if ( is_array( $retVal[$match[1]] ) ) {
$i = count($retVal[$match[1]]);
$retVal[$match[1]][$i] = $match[2];
}
else {
$retVal[$match[1]] = array($retVal[$match[1]], $match[2]);
}
} else {
$retVal[$match[1]] = trim($match[2]);
}
}
}
return $retVal;
}
答案 5 :(得分:1)
讨厌继续这么长的老线程,但是这个很好,因为:
(您可能需要代码来检查扩展名是否已存在)
function http_parse_headers ($raw) {
$res = [];
foreach (explode("\n", $raw) as $h) {
$h = explode(':', $h, 2);
$first = trim($h[0]);
$last = trim($h[1]);
if (array_key_exists($first, $res)) {
$res[$first] .= ", " . $last;
} else if (isset($h[1])) {
$res[$first] = $last;
} else {
$res[] = $first;
}
}
return $res;
}
答案 6 :(得分:1)
function parse_headers($headers)
{
$headers = preg_replace('/^\r\n/m', '', $headers);
$headers = preg_replace('/\r\n\s+/m', ' ', $headers);
preg_match_all('/^([^: ]+):\s(.+?(?:\r\n\s(?:.+?))*)?\r\n/m', $headers . "\r\n", $matches);
$result = array();
foreach ($matches[1] as $key => $value)
$result[$value] = (array_key_exists($value, $result) ? $result[$value] . "\n" : '') . $matches[2][$key];
return $result;
}
答案 7 :(得分:0)
不幸的是,对于文档页面中提供的函数,如果有两个以上相同的头(即Set-Cookie),则数组的结构将不正确,例如:
[Set-Cookie] => Array
(
[0] => Array
(
[0] => AWESOMESESSIONID=xQ5TRl1GXDQcQCXytfb1PK!-744872953!NONE; Path=/cte-lps2s-test2/; Secure
[1] => AWESOME_SESSH_c25c28d0-b763-11df-979f23a029aa77=%2Fcte-lps2s-test2; Path=/
)
[1] => MOREAWESOME=2_uGgNpo2-jm-CjfaefLzjFhmmP-y3HzwNZKE0gsTeP+; Path=/; Secure
)
以下对代码的修改将修复此错误(请参阅注释):
if( !function_exists( 'http_parse_headers' ) ) {
function http_parse_headers( $header )
{
$retVal = array();
$fields = explode("\r\n", preg_replace('/\x0D\x0A[\x09\x20]+/', ' ',$header));
foreach( $fields as $field ) {
if( preg_match('/([^:]+): (.+)/m', $field, $match) ) {
$match[1] = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', strtolower(trim($match[1])));
// We need to check if an array of values has already been created, to maintain the correct level in the $retVal array.
if(is_array($retVal[$match[1]])) {
$retVal[$match[1]] []= $match[2];
}
else {
$retVal[$match[1]] = array($retVal[$match[1]], $match[2]);
}
} else {
$retVal[$match[1]] = trim($match[2]);
}
}
return $retVal;
}
}