欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-02-22 22:29:07
其实,也比较简单,上代码:复制代码 代码如下:

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

复制代码 代码如下:

<?php     

    $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 '<pre>';print_r($array);     

    function postdata($url, $data)     
    {     
        $ch = curl_init();     
        $timeout = 300;      
        curl_setopt($ch, curlopt_url, $url);    
        curl_setopt($ch, curlopt_referer, "//www.jb51.net/");   //构造来路   
        curl_setopt($ch, curlopt_post, true);     
        curl_setopt($ch, curlopt_postfields, $data);     
        curl_setopt($ch, curlopt_returntransfer, 1);     
        curl_setopt($ch, curlopt_connecttimeout, $timeout);     
        $handles = curl_exec($ch);     
        curl_close($ch);     
        return $handles;     
    }     
?>