PHP cURL详解,get、put、delete、post等,连贯操作实现

curl是一种在命令行利用URL语法实现文件传输的工具
以下是一些简单curl功能的连贯操作方式实现
...
<hr />
...

<?php
class Mcurl
{
    public $ch;

    public function __construct()
    {
        $this->ch = curl_init();
    }


    private function init($url)
    {
        //初始化CURL句柄
        curl_setopt($this->ch, CURLOPT_URL, $url);//设置请求的URL
        // curl_setopt($this->ch, CURLOPT_HEADER, false);// 不要http header 加快效率
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, 1); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
        
        $header[] = "Content-Type:application/json;charset=utf-8";
        if(! empty($header))
        {
            curl_setopt($this->ch, CURLOPT_HTTPHEADER, $header);//设置 HTTP 头字段的数组。格式: array('Content-type: text/plain', 'Content-length: 100') 
        }

        return $this;
    }

    /**
     * 如果需要登录
     * @param  [type] $username [description]
     * @param  [type] $password [description]
     * @return [type]           [description]
     */
    public function auth($username, $password)
    {
        // 传递一个连接中需要的用户名和密码,格式为:"[username]:[password]"。
        curl_setopt($this->ch, CURLOPT_USERPWD, "{$username}:{$password}");
    }


    public function post(array $params)
    {
        // curl_setopt($this->ch, CURLOPT_POST,true);//TRUE 时会发送 POST 请求,类型为:application/x-www-form-urlencoded,是 HTML 表单提交时最常见的一种。
        // curl_setopt($this->ch, CURLOPT_NOBODY, true);//TRUE 时将不输出 BODY 部分。同时 Mehtod 变成了 HEAD。修改为 FALSE 时不会变成 GET。
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "POST");//HTTP 请求时,使用自定义的 Method 来代替"GET"或"HEAD"。对 "DELETE" 或者其他更隐蔽的 HTTP 请求有用。 有效值如 "GET","POST","CONNECT"等等;
        //设置提交的信息
        curl_setopt($this->ch, CURLOPT_POSTFIELDS, json_encode($params, 320));//全部数据使用HTTP协议中的 "POST" 操作来发送。

        return $this->close();
    }


    public function head()
    {
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "HEAD");

        return $this->close();
    }


    public function delete()
    {
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "DELETE");

        return $this->close();
    }


    public function put($params = [])
    {
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "PUT");
        curl_setopt($this->ch, CURLOPT_POSTFIELDS, json_encode($params, 320));

        return $this->close();
    }


    public function get()
    {
        curl_setopt($this->ch, CURLOPT_HTTPGET, true);//TRUE 时会设置 HTTP 的 method 为 GET,由于默认是 GET,所以只有 method 被修改时才需要这个选项。 

        return $this->close();
    }


    /**
     * 执行并关闭
     * @return [type] [description]
     */
    private function close()
    {
        $data = curl_exec($this->ch);//执行预定义的CURL
        $status = curl_getinfo($this->ch, CURLINFO_HTTP_CODE);//获取http返回值,最后一个收到的HTTP代码
        curl_close($this->ch);//关闭cURL会话
        $res = json_decode($data, true);

        return $res;
    }


    /**
     * 是否是https
     * @return [type] [description]
     */
    public function https()
    {
        //SSL验证
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, FALSE);    // https请求时要设置为false 不验证证书和hosts  FALSE 禁止 cURL 验证对等证书(peer's certificate), 自cURL 7.10开始默认为 TRUE。从 cURL 7.10开始默认绑定安装。 
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYHOST, FALSE);//检查服务器SSL证书中是否存在一个公用名(common name)。
        
        return $this;
    }


    /**
     * 请求时间
     * @param  integer $timeout [description]
     * @return [type]           [description]
     */
    public function out($timeout = 30)
    {
        //请求时间
        curl_setopt ($this->ch, CURLOPT_CONNECTTIMEOUT, $timeout);//设置连接等待时间

        return $this;
    }


    public function __call($method, $params)
    {
        if (method_exists($this, $method))
        {
            return $this->$method(...$params);
        }
    }


    public static function __callStatic($method, $params)
    {
        $Mcurl = new Mcurl;

        if (method_exists($Mcurl, $method))
        {
            return $Mcurl->$method(...$params);
        }
    }
}

// $url = 'x';
// $a = Mcurl::init($url)->get();
// print_r($a);

附上已model形式封装的curl

<?php
namespace App\Model\Base;

class Curl
{
    private $ch;  // curl对象
    public $url;  // 地址
    public $port;  // 端口
    public $route;  // 路由
    public $header = [];  // header
    public $returnTransfer = 1; // 转化字符串
    public $json = true;

    public function __construct()
    {
        if ($this->url)
        {
            $this->setUrl();
            $this->init();
        }
    }

    private function setUrl()
    {
        $this->url = config($this->url);
        $this->port && $this->url .= ':' . config($this->port);
        $this->route && $this->url .= '/' . $this->route;
    }

    /**
     * 自定义url
     * @param  [type] $url [description]
     * @return [type]      [description]
     */
    private function customUrl($url)
    {
        $this->url = $url;
        $this->init();

        return $this;
    }

    private function init()
    {
        $this->ch = curl_init();
        //初始化CURL句柄
        curl_setopt($this->ch, CURLOPT_URL, $this->url);//设置请求的URL
        // curl_setopt($this->ch, CURLOPT_HEADER, false);// 不要http header 加快效率
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, $this->returnTransfer); //设为TRUE把curl_exec()结果转化为字串,而不是直接输出
        
        $this->header[] = "Content-Type:application/json;charset=utf-8";
        if(! empty($this->header))
        {
            curl_setopt($this->ch, CURLOPT_HTTPHEADER, $this->header);//设置 HTTP 头字段的数组。格式: array('Content-type: text/plain', 'Content-length: 100') 
        }

        return $this;
    }

    /**
     * 如果需要登录
     * @param  [type] $username [description]
     * @param  [type] $password [description]
     * @return [type]           [description]
     */
    private function auth($username, $password)
    {
        // 传递一个连接中需要的用户名和密码,格式为:"[username]:[password]"。
        curl_setopt($this->ch, CURLOPT_USERPWD, "{$username}:{$password}");

        return $this;
    }


    private function post($params = [])
    {
        // curl_setopt($this->ch, CURLOPT_POST,true);//TRUE 时会发送 POST 请求,类型为:application/x-www-form-urlencoded,是 HTML 表单提交时最常见的一种。
        // curl_setopt($this->ch, CURLOPT_NOBODY, true);//TRUE 时将不输出 BODY 部分。同时 Mehtod 变成了 HEAD。修改为 FALSE 时不会变成 GET。
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "POST");//HTTP 请求时,使用自定义的 Method 来代替"GET"或"HEAD"。对 "DELETE" 或者其他更隐蔽的 HTTP 请求有用。 有效值如 "GET","POST","CONNECT"等等;
        //设置提交的信息 JSON_UNESCAPED_UNICODE + JSON_UNESCAPED_SLASHES
        curl_setopt($this->ch, CURLOPT_POSTFIELDS, json_encode($params, 320));//全部数据使用HTTP协议中的 "POST" 操作来发送。

        return $this->close();
    }


    private function head()
    {
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "HEAD");

        return $this->close();
    }


    private function delete()
    {
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "DELETE");

        return $this->close();
    }


    private function put($params = [])
    {
        curl_setopt($this->ch, CURLOPT_CUSTOMREQUEST, "PUT");
        curl_setopt($this->ch, CURLOPT_POSTFIELDS, json_encode($params, 320));

        return $this->close();
    }


    private function get()
    {
        curl_setopt($this->ch, CURLOPT_HTTPGET, true);//TRUE 时会设置 HTTP 的 method 为 GET,由于默认是 GET,所以只有 method 被修改时才需要这个选项。 

        return $this->close();
    }


    /**
     * 执行并关闭
     * @return [type] [description]
     */
    private function close()
    {
        $data = curl_exec($this->ch);//执行预定义的CURL
        $status = curl_getinfo($this->ch, CURLINFO_HTTP_CODE);//获取http返回值,最后一个收到的HTTP代码
        curl_close($this->ch);//关闭cURL会话

        if (! $this->json) return $data;
        $res = json_decode($data, true);

        return $res;
    }


    /**
     * 是否是https
     * @return [type] [description]
     */
    private function https()
    {
        //SSL验证
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, FALSE);    // https请求时要设置为false 不验证证书和hosts  FALSE 禁止 cURL 验证对等证书(peer's certificate), 自cURL 7.10开始默认为 TRUE。从 cURL 7.10开始默认绑定安装。 
        curl_setopt($this->ch, CURLOPT_SSL_VERIFYHOST, FALSE);//检查服务器SSL证书中是否存在一个公用名(common name)。
        
        return $this;
    }


    /**
     * 请求时间
     * @param  integer $timeout [description]
     * @return [type]           [description]
     */
    private function out($timeout = 30)
    {
        //请求时间
        curl_setopt ($this->ch, CURLOPT_CONNECTTIMEOUT, $timeout);//设置连接等待时间

        return $this;
    }

    private function error($message = 'error')
    {
        return $message;
    }

    public function __call($method, $params)
    {
        if (method_exists($this, $method))
        {
            return $this->$method(...$params);
        }
    }


    public static function __callStatic($method, $params)
    {
        $class = static::class;
        $Mcurl = new $class;
        
        if (method_exists($Mcurl, $method))
        {
            return $Mcurl->$method(...$params);
        }
    }
}

1 调用config url

<?php

namespace App\Model\Expert\Api;

class PCAP extends \App\Model\Base\Curl
{
    public $url = 'xx'; // 链接
    public $port = 'xx';  // 端口
    public $route = 'xx';  // 路由

    public static function getSizeAndCountOnPCAP($key, $direction)
    {
        $array = [
            "para" => [
                "type" => "querypacketinfo",
                "key" => $key,
                "direction" => $direction
            ]
        ];
        
        if (($temp = self::post($array)) && isset($temp['data']))
        {
            return explode('-', $temp['data']);
        }

        // count-size
        return [0, 0];
    }
}

2 自定义url

<?php

namespace App\Model\Expert\Api;

class PCAPShow extends \App\Model\Base\Curl
{
    public $url = ''; // 链接
    public $port = '';  // 端口
    public $route = '';  // 路由
    public $json = false;  // 关闭json转换

    public static function getShowData($url)
    {
        $data = self::customUrl($url)->get();

        return $data;
    }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,723评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,080评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,604评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,440评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,431评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,499评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,893评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,541评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,751评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,547评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,619评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,320评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,890评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,896评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,137评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,796评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,335评论 2 342

推荐阅读更多精彩内容

  • 一、什么是CURL? cURL 是一个利用URL语法规定来传输文件和数据的工具,支持很多协议,如HTTP、FTP、...
    茶艺瑶阅读 4,563评论 0 6
  • cURL是一个利用URL语法规定来传输文件和数据的工具,支持很多协议和选项,如HTTP、FTP、TELNET等,能...
    司马东阳阅读 1,430评论 0 6
  • 原文地址:PHPcURL库函数抓取页面内容(转)作者:巴克 cURL是一个利用URL语法规定来传输文件和数据的工具...
    司马东阳阅读 1,169评论 0 3
  • 一、什么是CURL? cURL 是一个利用URL语法规定来传输文件和数据的工具,支持很多协议,如HTTP、FTP、...
    伊Summer阅读 1,250评论 0 4
  • curl 命令,是一个利用URL规则在命令行下工作的文件传输工具。 curl 支持文件的上传和下载,所以是综合传输...
    米扑阅读 35,159评论 0 4