Home > Backend Development > PHP Tutorial > Get all links in the specified URL page

Get all links in the specified URL page

WBOY
Release: 2016-07-30 13:30:09
Original
1225 people have browsed it
	//获取指定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>';
		}
	}
Copy after login

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.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template