我已经编写了这段代码来从谷歌获取所有数据,但它返回空白。代码是
$page = "http://www.google.com";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $page);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$contents = curl_exec ($ch);
curl_close ($ch);
echo $contents;
任何人都可以发现这段代码有什么问题吗?我检查了我的 curl 已启用的 php 信息。