我正在尝试学习网络抓取并使用此示例从页面获取链接。有没有更好的方法来做到这一点,或者例如获得 h1 的最简单方法是什么?
$html = file_get_contents('page.html');
//parse the html into a DOMDocument
$dom = new DOMDocument();
@$dom->loadHTML($html);
//grab all the links on the page
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");
for ($i = 0; $i < $hrefs->length; $i++) {
$href = $hrefs->item($i);
$url = $href->getAttribute('href');
echo "<br />Link: $url";
}