当前位置:Gxlcms > PHP教程 > php利用curl发起get请求时url的参数问题

php利用curl发起get请求时url的参数问题

时间:2021-07-01 10:21:17 帮助过:5人阅读

php利用curl发起get请求时url的参数问题:

发送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.gxlcms.com)!

相关文章:

PHP中的使用curl发送请求(GET请求和POST请求)

PHP使用curl函数发送Post请求的注意事项实例详解

PHP开发技巧(八)-CURL请求的代码详情

人气教程排行