码迷,mamicode.com
首页 > Web开发 > 详细

php CURL 发送get,post请求

时间:2017-09-05 10:49:48      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:php curl   发送   接口   超时   pos   nsf   地址   fun   post   

   // 发送一个get请求 $url 发送地址
    function get($url)
    {
        //初始化操作
        $curl = curl_init($url);
        //设置请求参数
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);//设置结果的转换
        curl_setopt($curl, CURLOPT_TIMEOUT, 10);//设置超时时间
        // 发送请求
        $res = curl_exec($curl);
        return $res;
    }
    /*
       $url 请求的接口地址  
       $data 上传资源的地址    
    */
    function post($url, $data)
    {
        $curl = curl_init($url);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($curl, CURLOPT_TIMEOUT, 10);
        curl_setopt($curl, CURLOPT_POST, 1);
        curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
        //发送
        $res = curl_exec($curl);
        return $res;
    }

php CURL 发送get,post请求

标签:php curl   发送   接口   超时   pos   nsf   地址   fun   post   

原文地址:http://www.cnblogs.com/jhy-ocean/p/7477379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!