發送get請求時,url是不是不能帶查詢字串,只能是網域+path呢?我的範例如下,加上查詢字串後就不好使了? ? ?
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.dest.cn/member/my.php"); //curl_setopt($ch, CURLOPT_URL, "http://www.dest.cn/member/my.php?mid=14&my_calfee=1") curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); $kk = curl_exec($ch); curl_close($ch); print_r($kk);
發送get請求時,url是不是不能帶查詢字串,只能是網域+path呢?我的範例如下,加上查詢字串後就不好使了? ? ?
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.dest.cn/member/my.php"); //curl_setopt($ch, CURLOPT_URL, "http://www.dest.cn/member/my.php?mid=14&my_calfee=1") curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); $kk = curl_exec($ch); curl_close($ch); print_r($kk);
get就是url傳參
以上就是php利用curl發起get請求時url的參數問題的內容,更多相關內容請關注PHP中文網(www.php.cn)!
相關文章:
PHP使用curl函數發送Post請求的注意事項實例詳細資料-PH請求的代碼詳情