php查找任何页面上的所有链接的方法

前端之家收集整理的这篇文章主要介绍了php查找任何页面上的所有链接的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用DOM,你可以轻松从任何页面上抓取链接代码示例如下:
<div class="codetitle"><a style="CURSOR: pointer" data="17304" class="copybut" id="copybut17304" onclick="doCopy('code17304')"> 代码如下:

<div class="codebody" id="code17304">
$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.'
';
}

原文链接:https://www.f2er.com/php/25392.html

猜你在找的PHP相关文章