PHP請求跳轉
阿新 • • 發佈:2019-01-02
//初始化 $curl = curl_init(); //設定抓取的url curl_setopt($curl, CURLOPT_URL, 'http://www.yxegsc.com/fn_wx/Jubao/tree/'); //設定標頭檔案的資訊作為資料流輸出 curl_setopt($curl, CURLOPT_HEADER, 1); //設定獲取的資訊以檔案流的形式返回,而不是直接輸出。 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); //設定post方式提交 curl_setopt($curl, CURLOPT_POST, 1); //設定post資料 $post_data = array( "total" => $total, "uid" => $user_id ); curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data); //執行命令 $data = curl_exec($curl); //關閉URL請求 curl_close($curl);