URL の例: 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);
}