当前位置:首页 > PHP教程 > php应用 > 列表

php实现httpRequest的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-16 12:13:59 浏览: 评论:0 

这篇文章主要介绍了php实现httpRequest的方法,涉及php操作http的技巧,具有一定参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了php实现httpRequest的方法,分享给大家供大家参考,具体如下:

想从学校图书馆的网站上抓取数据处理之后在返回给浏览器,试了不少方法。首先试了http_request(),但是这个学院pecl_http支持,后来又试了网上流传甚广的class HttpRequest,可能是我不会使用,也失败了。后来看到了函数httpRequest($url, $post='', $method='GET', $limit=0, $returnHeader=FALSE, $cookie='', $bysocket=FALSE, $ip='', $timeout=15, $block=TRUE),用它成功了,因此贴出来分享一下,函数代码如下:

  1. <?php  
  2.     /** 
  3.     * Respose A Http Request 
  4.     * 
  5.     * @param string $url 
  6.     * @param array $post 
  7.     * @param string $method 
  8.     * @param bool $returnHeader 
  9.     * @param string $cookie 
  10.     * @param bool $bysocket 
  11.     * @param string $ip 
  12.     * @param integer $timeout 
  13.     * @param bool $block 
  14.     * @return string Response 
  15.     */  
  16.     function httpRequest($url,$post='',$method='GET',$limit=0,$returnHeader=FALSE,$cookie='',$bysocket=FALSE,$ip='',$timeout=15,$block=TRUE) {  
  17.        $return = '';  
  18.        $matches = parse_url($url);  
  19.        !isset($matches['host']) && $matches['host'] = '';  
  20.        !isset($matches['path']) && $matches['path'] = '';  
  21.        !isset($matches['query']) && $matches['query'] = '';  
  22.        !isset($matches['port']) && $matches['port'] = '';  
  23.        $host = $matches['host'];  
  24.        $path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/';  
  25.        $port = !emptyempty($matches['port']) ? $matches['port'] : 80;  
  26.        if(strtolower($method) == 'post') {  
  27.            $post = (is_array($postand !emptyempty($post)) ? http_build_query($post) : $post;  
  28.            $out = "POST $path HTTP/1.0\r\n";  
  29.            $out .= "Accept: */*\r\n";  
  30.            //$out .= "Referer: $boardurl\r\n";  
  31.            $out .= "Accept-Language: zh-cn\r\n";  
  32.            $out .= "Content-Type: application/x-www-form-urlencoded\r\n";  
  33.            $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";  
  34.            $out .= "Host: $host\r\n";  
  35.            $out .= 'Content-Length: '.strlen($post)."\r\n";  
  36.            $out .= "Connection: Close\r\n";  
  37.            $out .= "Cache-Control: no-cache\r\n";  
  38.            $out .= "Cookie: $cookie\r\n\r\n";  
  39.            $out .= $post;  
  40.        } else {  
  41.            $out = "GET $path HTTP/1.0\r\n";  
  42.            $out .= "Accept: */*\r\n";  
  43.            //$out .= "Referer: $boardurl\r\n";  
  44.            $out .= "Accept-Language: zh-cn\r\n";  
  45.            $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";  
  46.            $out .= "Host: $host\r\n";  
  47.            $out .= "Connection: Close\r\n";  
  48.            $out .= "Cookie: $cookie\r\n\r\n";  
  49.        }  
  50.        $fp = fsockopen(($ip ? $ip : $host), $port$errno$errstr$timeout);  
  51.        if(!$fpreturn ''else {  
  52.            $header = $content = '';  
  53.            stream_set_blocking($fp$block);  
  54.            stream_set_timeout($fp$timeout);  
  55.            fwrite($fp$out);  
  56.            $status = stream_get_meta_data($fp);  
  57.            if(!$status['timed_out']) {//未超时  
  58.                while (!feof($fp)) {  
  59.                    $header .= $h = fgets($fp);  
  60.                    if($h && ($h == "\r\n" ||  $h == "\n")) break;  
  61.                }  
  62.  
  63.                $stop = false;  
  64.                while(!feof($fp) && !$stop) {  
  65.                    $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit));  
  66.                    $content .= $data;  
  67.                    if($limit) {  
  68.                        $limit -= strlen($data);  
  69.                        $stop = $limit <= 0;  
  70.                    }  
  71.                }  
  72.            }  
  73.         fclose($fp);  
  74.            return $returnHeader ? array($header,$content) : $content;  
  75.        }  
  76.     }  
  77. ?> 

调用也很简单的。简单的例子:

echo httpRequest('http://www.phpfensi.com');

希望本文所述对大家的php程序设计有所帮助。

Tags: httpRequest

分享到: