欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP下使用CURL方式POST數(shù)據(jù)至API接口的代碼

 更新時(shí)間:2013年02月14日 23:01:45   作者:  
PHP下使用curl方式post數(shù)據(jù)至api接口的方法,大部分的API的HTTP請求方式都為GET,所以不管用AJAX和PHP二次處理都能拿到返回的數(shù)據(jù),但是一些API的HTTP請求方式是POST,那么我們就需要使用到curl了

其實(shí),也比較簡單,上代碼:

復(fù)制代碼 代碼如下:

<?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, "http://www.dbjr.com.cn/");   //構(gòu)造來路   
        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;     
    }     
?>

相關(guān)文章

最新評論