欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 获取指定URl页面中所有链接

程序员文章站 2022-05-16 22:18:23
...
  1. //获取指定URL页面中所有链接
  2. function get_url_href($url){
  3. $html = file_get_contents($url);
  4. $dom = new DOMDocument();
  5. @$dom->loadHTML($html);
  6. $xpath = new DOMXPath($dom);
  7. $hrefs = $xpath->evaluate('/html/body//a');
  8. for($i=0;$ilength;$i++){
  9. $href = $hrefs->item($i);
  10. $url = $href->getAttribute('href');
  11. if(substr($url,0,4) == 'http') echo $url.'
    ';
  12. }
  13. }
复制代码

PHP, URl