php查找任何页面上的所有链接的方法
程序员文章站
2022-06-22 21:00:18
使用dom,你可以轻松从任何页面上抓取链接,代码示例如下: 复制代码 代码如下: $html = file_get_contents('http://www.example...
使用dom,你可以轻松从任何页面上抓取链接,代码示例如下:
$html = file_get_contents('http://www.example.com');
$dom = new domdocument();
@$dom->loadhtml($html);
// grab all the 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 $url.'<br />';
}
复制代码 代码如下:
$html = file_get_contents('http://www.example.com');
$dom = new domdocument();
@$dom->loadhtml($html);
// grab all the 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 $url.'<br />';
}