首頁 php教程 PHP源码 php异步处理类

php异步处理类

May 25, 2016 pm 05:10 PM

php代码

<?php
//使用方法
require(&#39;asynHandle.class.php&#39;);
$obj    = new asynHandle();
 
$result = $obj->Request(&#39;http://baidu.com&#39;);
$result2    = $obj->Get(&#39;https://mail.google.com/&#39;);
echo "<textarea>{$result}</textarea><br/><br/>";
echo "<textarea>{$result2}</textarea><br/><br/>";
登入後複製

asynHandle.class.php

<?php
/*
 * 异步处理类
 * @author lkk/lianq.net
 * @create on 10:05 2012-7-30
 * @example:
 *  $obj    = new asynHandle();
 *  $obj->Request(&#39;http://google.com&#39;);
 *  $obj->Get(&#39;http://google.com&#39;);
 */
 
class asynHandle {
    public      $url        = &#39;&#39;;       //传入的完整请求url,包括"http://"或"https://"
    public      $cookie     = array();  //传入的cookie数组,须是键值对
    public      $post       = array();  //传入的post数组,须是键值对
    public      $timeout    = 30;       //超时秒数
    public      $result     = &#39;&#39;;       //获取到的数据
     
    private     $gzip       = true;     //是否开启gzip压缩
    private     $fop        = NULL;     //fsockopen资源句柄
    private     $host       = &#39;&#39;;       //主机
    private     $port       = &#39;&#39;;       //端口
    private     $referer    = &#39;&#39;;       //伪造来路
    private     $requestUri = &#39;&#39;;       //实际请求uri
    private     $header     = &#39;&#39;;       //头信息
     
    private     $block      = 1;        //网络流状态.1为阻塞,0为非阻塞
    private     $limit      = 128;      //读取的最大字节数  
     
    //构造函数
    public function __construct(){
        ignore_user_abort(TRUE);//忽略用户中断.如果客户端断开连接,不会引起脚本abort
        //set_time_limit(0);//取消脚本执行延时上限
    }
     
    //解析URL并创建资源句柄
    private function analyzeUrl(){
        if ($this->url == &#39;&#39;){return false;}
        $url_array = parse_url($this->url);
        !isset($url_array[&#39;host&#39;]) && $url_array[&#39;host&#39;] = &#39;&#39;;     
        !isset($url_array[&#39;path&#39;]) && $url_array[&#39;path&#39;] = &#39;&#39;;     
        !isset($url_array[&#39;query&#39;]) && $url_array[&#39;query&#39;] = &#39;&#39;;     
        !isset($url_array[&#39;port&#39;]) && $url_array[&#39;port&#39;] = 80;
         
        $this->host          = $url_array[&#39;host&#39;];
        $this->port          = $url_array[&#39;port&#39;];
        $this->referer       = $url_array[&#39;scheme&#39;].&#39;://&#39;.$this->host.&#39;/&#39;;
        $this->requestUri    = $url_array[&#39;path&#39;] ? 
                            $url_array[&#39;path&#39;].($url_array[&#39;query&#39;] ? &#39;?&#39;.$url_array[&#39;query&#39;] : &#39;&#39;) : &#39;/&#39;;
         
        switch($url_array[&#39;scheme&#39;]){
            case &#39;https&#39;:
                $this->fop   = fsockopen(&#39;ssl://&#39;.$this->host, 443, $errno, $errstr, $this->timeout);
                break;
            default:
                $this->fop   = fsockopen($this->host, $this->port, $errno, $errstr, $this->timeout);
                break;
        }
         
        if(!$this->fop){
            $this->result    = "$errstr ($errno)<br />\n";
            return false;
        }
        return true;
    }//analyzeUrl end
     
    //拼装HTTP的header
    private function assHeader(){
        $method = empty($this->post) ? &#39;GET&#39; : &#39;POST&#39;;
        $gzip = $this->gzip ? &#39;gzip, &#39; : &#39;&#39;;
         
        //cookie数据
        if(!empty($htis->cookie)){
            $htis->cookie = http_build_cookie($htis->cookie);
        }
         
        //post数据
        if(!empty($this->post)){         
            $this->post = http_build_query($this->post);
        }
         
        $header = "$method $this->requestUri HTTP/1.0\r\n";
        $header .= "Accept: */*\r\n";
        $header .= "Referer: $this->referer\r\n";
        $header .= "Accept-Language: zh-cn\r\n";
        if(!empty($this->post)){
            $header .= "Content-Type: application/x-www-form-urlencoded\r\n";
        }
        $header .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n";
        $header .= "Host: $this->host\r\n";
        if(!empty($this->post)){
            $header .= &#39;Content-Length: &#39;.strlen($this->post)."\r\n";
        }
        $header .= "Connection: Close\r\n";
        $header .= "Accept-Encoding: {$gzip}deflate\r\n";
        $header .= "Cookie: $this->cookie\r\n\r\n";
        $header .= $this->post;
        $this->header    = $header;
    }//assHeader end
     
    //返回状态检测,301、302重定向处理
    private function checkRecvHeader($header){
        if(strstr($header,&#39; 301 &#39;) || strstr($header,&#39; 302 &#39;)){//重定向处理
            preg_match("/Location:(.*?)$/im",$header,$match);
            $url = trim($match[1]);
            preg_match("/Set-Cookie:(.*?)$/im",$header,$match);
            $cookie = (empty($match)) ? &#39;&#39; : $match[1];
             
            $obj            = new asynHandle();
            $result         = $obj->Get($url, $cookie, $this->post);
            $this->result    = $result;
            return $result;
        }elseif(!strstr($header,&#39; 200 &#39;)){
            //找不到域名或网址
            return false;
        }else return 200;
    }//checkRecvHeader end
     
    //gzip解压
    private function gzdecode($data){
        $flags = ord(substr($data, 3, 1));
        $headerlen = 10;
        $extralen = 0;
        $filenamelen = 0;
        if ($flags & 4) {
            $extralen = unpack(&#39;v&#39; ,substr($data, 10, 2));
            $extralen = $extralen[1];
            $headerlen += 2 + $extralen;
        }
        if ($flags & 8) $headerlen = strpos($data, chr(0), $headerlen) + 1;
        if ($flags & 16) $headerlen = strpos($data, chr(0), $headerlen) + 1;
        if ($flags & 2) $headerlen += 2;
        $unpacked = @gzinflate(substr($data, $headerlen));
        if ($unpacked === FALSE) $unpacked = $data;
        return $unpacked;
    }//gzdecode end
     
    //请求函数,只请求,不返回
    public function Request($url, $cookie=array(), $post=array(), $timeout=3){
        $this->url       = $url;
        $this->cookie    = $cookie;
        $this->post      = $post;
        $this->timeout   = $timeout;
         
        if(!$this->analyzeUrl()){
            return $this->result;
        }
        $this->assHeader();
         
        stream_set_blocking($this->fop, 0);//非阻塞,无须等待
        fwrite($this->fop, $this->header);
        fclose($this->fop);
        return true;
    }//Request end
     
    //获取函数,请求并返回
    public function Get($url, $cookie=array(), $post=array(), $timeout=30){
        $this->url       = $url;
        $this->cookie    = $cookie;
        $this->post      = $post;
        $this->timeout   = $timeout;
         
        if(!$this->analyzeUrl()){
            return $this->result;
        }
        $this->assHeader();
         
        stream_set_blocking($this->fop, $this->block);   
        stream_set_timeout($this->fop, $this->timeout);
        fwrite($this->fop, $this->header);
        $status = stream_get_meta_data($this->fop);
         
        if(!$status[&#39;timed_out&#39;]){
            $h=&#39;&#39;;
            while(!feof($this->fop)){
                if(($header = @fgets($this->fop)) && ($header == "\r\n" ||  $header == "\n")){
                    break;
                }
                $h .= $header;
            }
            $checkHttp  = $this->checkRecvHeader($h);
            if($checkHttp!=200){return $checkHttp;}
             
            $stop = false;
            $return = &#39;&#39;;
            $this->gzip = false;
            if(strstr($h,&#39;gzip&#39;)) $this->gzip = true;
            while(!($stop && $status[&#39;timed_out&#39;] && feof($this->fop))){
                if($status[&#39;timed_out&#39;]) return false;
                $data = fread($this->fop, ($this->limit == 0 || $this->limit > 128 ? 128 : $this->limit));  
                if($data == &#39;&#39;){//有些服务器不行,须自行判断FOEF
                    break;
                }
                $return .= $data;
                if($this->limit){
                    $this->limit -= strlen($data);
                    $stop = $this->limit <= 0;
                }
                 
            }
            @fclose($this->fop);
            $this->result    = $this->gzip ? $this->gzdecode($return) : $return;
            return $this->result;
        }else{
            return false;
        }
    }//Get end
 
 
}
登入後複製
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
1 個月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
1 個月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
1 個月前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.聊天命令以及如何使用它們
1 個月前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)