Home > Article > Backend Development > Get all links in the specified URL page
//获取指定URL页面中所有链接 function get_url_href($url){ $html = file_get_contents($url); $dom = new DOMDocument(); @$dom->loadHTML($html); $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'); if(substr($url,0,4) == 'http') echo $url.'<br>'; } }
Copyright Statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.
The above introduces how to get all the links in the specified URL page, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.