我有以下网址
http://www.davesinclairstpeters.com/auto2_inventorylist?i=37647&c=12452&npg=1&ns=50&echo=2
我想使用 curl 检索此 url 的内容,但每次我发出此请求时,它都会向我显示错误,因为它没有传递必需的参数
下面是我的代码
$ch = curl_init(); // 开始卷曲 curl_setopt($ch, CURLOPT_URL, $json_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPGET, true); curl_setopt($ch, CURLOPT_FRESH_CONNECT, true); $response = curl_exec($ch);