示例网址: https ://www.tescogoldexchange.com/gold-calculator.aspx?carat=9&weight=1&ref=miniQuote
我正在尝试使用 cURL 来获取 HTTPS 页面的内容。
问题是我无法获取文档,我不知道为什么。
function download_page($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
return curl_exec($ch);
}