首页  >  文章  >  后端开发  >  PHP下使用CURL方式POST数据至API接口的代码_PHP教程

PHP下使用CURL方式POST数据至API接口的代码_PHP教程

WBOY
WBOY原创
2016-07-21 15:12:54741浏览

其实,也比较简单,上代码:

复制代码 代码如下:


    $url = 'http://127.0.0.1/test.php';//POST指向的链接     
    $data = array(     
        'access_token'=>'thekeyvalue'    
    );     

    $json_data = postData($url, $data);     
    $array = json_decode($json_data,true);     
    echo '
';print_r($array);      <br><br>    function postData($url, $data)      <br>    {      <br>        $ch = curl_init();      <br>        $timeout = 300;       <br>        curl_setopt($ch, CURLOPT_URL, $url);     <br>        curl_setopt($ch, CURLOPT_REFERER, "http://www.jb51.net/");   //构造来路    <br>        curl_setopt($ch, CURLOPT_POST, true);      <br>        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);      <br>        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);      <br>        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);      <br>        $handles = curl_exec($ch);      <br>        curl_close($ch);      <br>        return $handles;      <br>    }      <br>?><br>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/326623.htmlTechArticle其实,也比较简单,上代码: 复制代码 代码如下: ?php $url = 'http://127.0.0.1/test.php';//POST指向的链接 $data = array( 'access_token'='thekeyvalue' ); $jso...
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn