Rumah >php教程 >PHP开发 >PHP下使用CURL方式POST数据至API接口的代码

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

高洛峰
高洛峰asal
2016-12-23 15:54:211134semak imbas

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

<?php      

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

    $json_data = postData($url, $data);      
    $array = json_decode($json_data,true);      
    echo &#39;<pre class="brush:php;toolbar:false">&#39;;print_r($array);      

    function postData($url, $data)      
    {      
        $ch = curl_init();      
        $timeout = 300;       
        curl_setopt($ch, CURLOPT_URL, $url);     
        curl_setopt($ch, CURLOPT_REFERER, "http://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;      
    }      
?>


更多PHP下使用CURL方式POST数据至API接口的代码相关文章请关注PHP中文网!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn