使用fsockopen获取页面

时间:2014-04-02 16:25:38

标签: php sockets fsockopen phpwebsocket

我试图访问http://www.example.com:4380/apid/request?method=getXMLTable&name=1&ui=UI&id=12345。它应该以XML格式返回输出。 这是代码:

<?

$host = "www.example.com";
$path = "/apid/request?method=getXMLTable&name=1&ui=UI&id=12345";
$port = 4380;

$fp = fsockopen($host, $port, $errno, $errstr, 30);
$buffer ="";
if (!$fp) {
      echo "ERR!!<br>";
    echo "$errstr ($errno)<br />\n";
} else {
    $out = "GET ".$path." HTTP/1.1\r\n";
        $out .= "Host: ".$host."\r\n";
        $out .= "Connection: Close\r\n\r\n";
        fwrite($fp, $out);

        while (!feof($fp)) {
            $buffer .= fgets($fp, 1024);
        }
        fclose($fp);
}                                                            
 ?>

无论如何我没有得到XML输出,但是这个回复:

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Last-Modified: Wed, 02 Apr 2014 16:16:43 GMT
Cache-Control: no-store
Cache-Control: no-cache
Cache-Control: must-revalidate
Cache-Control: pre-check=0
Cache-Control: post-check=0
Cache-Control: max-age=0
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Type: text/xml
Transfer-Encoding: chunked
Vary: Accept-Encoding
Date: Wed, 02 Apr 2014 16:16:43 GMT
Connection: close 2000 0

我可以使用显示的代码访问'www.example.com/path/to/file'之类的网页而不会出现任何问题。我想我对端口(不是标准的http)或请求有任何错误。每一条线索都非常受欢迎。

编辑:

can't使用任何http模块!在这种情况下,套接字是必须的! 我已尝试使用下面的代码,但我在$ body中没有得到任何结果:

list($header, $body) = explode("\n\n", $buffer, 2);
echo http_chunked_decode($body);

1 个答案:

答案 0 :(得分:2)

您收到Transfer-Encoding: chunked回复。您需要使用http_chunked_decode对其进行解码(如果您没有pecl_http,则可以找到PHP version here)。

list($header, $body) = explode("\n\n", $buffer, 2);
echo http_chunked_decode($body);

但正如其他评论者所说,如果您启用file_get_contentscurl,则应该使用allow_url_fopen。他们为您处理分块编码。