当前位置 : 主页 > 网络编程 > PHP >

PHP取得一个页面中的所有链接

来源:互联网 收集:自由互联 发布时间:2021-07-03
通过使用此代码段,您可以很容易地提取任何网页上的所有链接。 $html = file_get_contents('http://www.example.com'); $dom = new DOMDocument(); @$dom-loadHTML($html); // grab all the on the page $xpath = new DOMXPath(
通过使用此代码段,您可以很容易地提取任何网页上的所有链接。
    $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.'  
    ';  
    }  
网友评论