我有一个 php 脚本,可以加载此网页以从其表中提取一些数据。
以下方法无法获取其表内容:
使用 file_get_contents:
$document -> file_get_contents("http://www.webpage.com/");
print_r($document);
使用卷曲:
$document = curl_init('http://www.webpage.com/');
curl_setopt($document, CURLOPT_RETURNTRANSFER, true);
$html = curl_exec($document);
print_r($html);
使用loadHTMLFile:
$document->loadHTMLFile('http://www.webpage.com/');
print_r($document);
我究竟做错了什么?
以及它们如何阻止某些内容加载?
叮当猫咪
天涯尽头无女友
有只小跳蛙