get請求是最簡單的請求,不過要注意自己的請求是http請求還是https的請求,因為https請求時要關閉SSL驗證,不然驗證通不過,沒有辦法請求到資料。
GET請求的引數
get傳遞引數和正常請求url傳遞引數的方式一樣
(免費線上視訊教學分享:php視訊教學)
function get_info($card){ $url ="http://www.sdt.com/api/White/CardInfo?cardNo=".$bank_card; $ch = curl_init(); //設定選項,包括URL curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); //執行並獲取HTML文件內容 $output = curl_exec($ch); //釋放curl控制代碼 curl_close($ch); return $output; }
HTTPS請求時要注意SSL驗證
function get_bankcard_info($bank_card){ $url ="https://ccdcapi.alipay.com/validateAndCacheCardInfo.json?_input_charset=utf-8&cardNo=".$bank_card."&cardBinCheck=true"; $ch = curl_init(); //設定選項,包括URL curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//繞過ssl驗證 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //執行並獲取HTML文件內容 $output = curl_exec($ch); //釋放curl控制代碼 curl_close($ch); return $output; }以上就是關於在php中使用curl傳送get請求時引數傳遞問題的解析的詳細內容,更多請關注TW511.COM其它相關文章!