1. 程式人生 > >PHP兩種HTTP請求

PHP兩種HTTP請求

第一種:POST方式

function http_post_data($url,$data_string)

{
    $ch = curl_init();// 建立一個新cURL資源
    curl_setopt($ch, CURLOPT_POST, 1);//設定請求為post;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);// 新增post資料到請求中
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//支援https請求
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//curl獲取頁面內容或提交資料,作為變數儲存,而不是直接輸出。
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json; charset=utf-8', 'Content-Length:' . strlen($data_string)));
    $return_content=curl_exec($ch);// 抓取URL並把它傳遞給瀏覽器
    curl_close($ch);//關閉cURL資源,並且釋放系統資源
    return $return_content;
}


$url = "http://user.jt.yoximi.com/Login/CheckLogin";//介面地址
$json_body =json_encode(Array('sessionId'=>$b,'clientId'=>$a,'sign'=>$c));//需要傳送的資料

$de_json = http_post_data($url, $json_body);

第二種:GET方式

$a = $_COOKIE["u1_client"];

$b = $_COOKIE["u1_session"];
$c = $_COOKIE["u1_sign"];
$ABC = file_get_contents("http://user.jt.yoximi.com/Login/CheckLogin?sessionId=".$b."&clientId=".$a."&sign=".$c."");
$de_json = json_decode($ABC, true);