Home >Backend Development >PHP Tutorial >PHP regular expression to obtain all URLs and link text of a web page_PHP tutorial

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 10:58:361260browse

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...
Statement:
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