PHP regular expression to obtain all URLs and link text of a web page_PHP tutorial

WBOY
Release: 2016-07-13 10:58:36
Original
1177 people have browsed it

php tutorial regular expression to get all URLs and link text of web pages

$url ='http://www.bKjia.c0m';
$body=@file_get_contents($url);
preg_match_all('/href=['"]?([^'"]*)['"]?>(.*)/i',$body,$b);
$nums = array();
foreach($b[1] as $u){
if(in_array($u,$nums)){
continue;
}
$nums[]=$u;
$title=strip_tags($u);
echo $title."
";
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631998.htmlTechArticlephp tutorial regular expression to get all the URLs and link text of the web page $url ='http://www.111cn. net'; $body=@file_get_contents($url); preg_match_all('/href=[']?([^']*)[']?(.*)/i',$body,$b...
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!