Curl.class.php 2.52 KB
Newer Older
章建武's avatar
章建武 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
<?php
namespace Common\Logic\Wechat;

class Curl
{
    
    /**
     * curl资源
     * @var unknown
     */
    protected $ch;
    
    /**
     * 配置
     * @var array
     */
    protected $opt_arr = array(
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_POST => false,
        CURLOPT_NOSIGNAL => true
    );
    
    /**
     * curl_exec函数返回值
     * @var array
     */
    protected $result;
    
    /**
     * curl_getinfo函数返回值
     * @var array
     */
    protected $curl_info;
    
    public function __construct()
    {
        $this->_init();
    }
    
    /**
     * 设置配置信息
     * @param int 键
     * @param mixed 值
     * @return \Common\Logic\Wechat\Curl
     */
    public function setOpt($key, $val)
    {
        $this->opt_arr[$key] = $val;
        return $this;
    }
    
    /**
     * 设置url
     * @param string url
     * @return \Common\Logic\Wechat\Curl
     */
    public function setUrl($url)
    {
        return $this->setOpt(CURLOPT_URL, $url);
    }
    
    /**
     * 设置https请求
     * @return \Common\Logic\Wechat\Curl
     */
    public function setHttps()
    {
        return $this
        ->setOpt(CURLOPT_SSL_VERIFYPEER, false)
        ->setOpt(CURLOPT_SSL_VERIFYHOST, 2);
    }
    
    /**
     * 初始化
     * @throws \Exception
     */
    protected function _init()
    {
        $ch = curl_init();
        if (!$ch) throw new \Exception('初始化Curl错误');
        
        $this->ch = $ch;
    }
    
    /**
     * 设置请求方式为get
     * @return \Common\Logic\Wechat\Curl
     */
    public function setGet()
    {
        return $this->setOpt(CURLOPT_POST, false);
    }
    
    /**
     * 设置请求方式为post
     * @return \Common\Logic\Wechat\Curl
     */
    public function post()
    {
        return $this->setOpt(CURLOPT_POST, true);
    }
    
    /**
     * 发送请求
     */
    public function request()
    {
        curl_setopt_array($this->ch, $this->opt_arr);
        
        // 取得请求结果
        $this->result = curl_exec($this->ch);
        $error = curl_errno($this->ch);
        $this->curl_info = curl_getinfo($this->ch);
        
        if ($error > 0) throw new \Exception('Curl 错误:' . curl_strerror ($error) . '(' . $error . ')');
        
        return $this;
    }
    
    public function __get($att)
    {
        switch ($att) {
            case 'result':
            case 'curl_info':
                return $this->$att;
        }
        
        throw new \Exception($att . ' is not fund');
    }
}