当前位置:Gxlcms > PHP教程 > PHP取得一个页面中的所有链接

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

时间:2021-07-01 10:21:17 帮助过:33人阅读

通过使用此代码段,您可以很容易地提取任何网页上的所有链接。
  1. $html = file_get_contents('http://www.example.com');
  2. $dom = new DOMDocument();
  3. @$dom->loadHTML($html);
  4. // grab all the on the page
  5. $xpath = new DOMXPath($dom);
  6. $hrefs = $xpath->evaluate("/html/body//a");
  7. for ($i = 0; $i < $hrefs->length; $i++) {
  8. $href = $hrefs->item($i);
  9. $url = $href->getAttribute('href');
  10. echo $url.'
  11. ';
  12. }

PHP

人气教程排行