我想在不依赖于cURL的情况下发出HTTP请求,并allow_url_fopen = 1打开套接字连接并发送原始HTTP请求:
/**
 * Make HTTP GET request
 *
 * @param   string   the URL
 * @param   int      will be filled with HTTP response status code
 * @param   string   will be filled with HTTP response header
 * @return  string   HTTP response body
 */
function http_get_request($url, &$http_code = '', &$res_head = '') 
{
  $scheme = $host = $user = $pass = $query = $fragment = '';
  $path = '/';
  $port = substr($url, 0, 5) == 'https' ? 443 : 80;
  extract(parse_url($url)); 
  $path .= ($query ? "?$query" : '').($fragment ? "#$fragment" : '');
  $head = "GET $path HTTP/1.1\r\n"
        . "Host: $host\r\n"
        . "Authorization: Basic ".base64_encode("$user:$pass")."\r\n"
        . "Connection: close\r\n\r\n";
  $fp = fsockopen($scheme == 'https' ? "ssl://$host" : $host, $port) or 
    die('Cannot connect!');
  fputs($fp, $head);
  while(!feof($fp)) {
    $res .= fgets($fp, 4096);
  }
  fclose($fp);
  list($res_head, $res_body) = explode("\r\n\r\n", $res, 2);
  list(, $http_code, ) = explode(' ', $res_head, 3);
  return $res_body;
}
该函数工作正常,但由于我使用HTTP/1.1,响应体通常以Chunked编码的字符串返回.例如(来自维基百科):
25
This is the data in the first chunk
1C
and this is the second one
3
con
8
sequence
0
我不想使用,http_chunked_decode()因为它具有PECL依赖性,我想要一个高度可移植的代码.
如何轻松解码HTTP-chunked编码字符串,以便我的函数可以返回原始HTML?我还必须确保解码字符串的长度与Content-Length:标头匹配.
任何帮助,将不胜感激.谢谢.
flo*_*ree 11
由于该函数返回的HTTP响应头,你应该检查是否'Transfer-Encoding'是'chunked'然后解码分块编码字符串.在伪代码中:
CALL parse_http_header
IF 'Transfer-Encoding' IS 'chunked'
  CALL decode_chunked
解析HTTP响应头:
下面是将HTTP响应头解析为关联数组的函数.
function parse_http_header($str) 
{
  $lines = explode("\r\n", $str);
  $head  = array(array_shift($lines));
  foreach ($lines as $line) {
    list($key, $val) = explode(':', $line, 2);
    if ($key == 'Set-Cookie') {
      $head['Set-Cookie'][] = trim($val);
    } else {
      $head[$key] = trim($val);
    }
  }
  return $head;
}
该函数将返回如下数组:
Array
(
    [0] => HTTP/1.1 200 OK
    [Expires] => Tue, 31 Mar 1981 05:00:00 GMT
    [Content-Type] => text/html; charset=utf-8
    [Transfer-Encoding] => chunked
    [Set-Cookie] => Array
        (
            [0] => k=10.34; path=/; expires=Sat, 09-Jun-12 01:58:23 GMT; domain=.example.com
            [1] => guest_id=v1%3A13; domain=.example.com; path=/; expires=Mon, 02-Jun-2014 13:58:23 GMT
        )
    [Content-Length] => 43560
)
请注意Set-Cookie标头如何解析为数组.您需要稍后解析cookie以将URL与需要发送的cookie相关联.
解码分块编码的字符串
下面的函数将chunked编码的字符串作为参数,并返回已解码的字符串.
function decode_chunked($str) {
  for ($res = ''; !empty($str); $str = trim($str)) {
    $pos = strpos($str, "\r\n");
    $len = hexdec(substr($str, 0, $pos));
    $res.= substr($str, $pos + 2, $len);
    $str = substr($str, $pos + 2 + $len);
  }
  return $res;
}
// Given the string in the question, the function above will returns:
//
// This is the data in the first chunk
// and this is the second one
// consequence