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

php 正则表达式获取网页所有网址和链接文字_PHP教程

程序员文章站 2022-05-10 23:25:11
...
php教程 正则表达式获取网页所有网址和链接文字

$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教程 正则表达式获取网页所有网址和链接文字 $url ='http://www.111cn.net'; $body=@file_get_contents($url); preg_match_all('/href=[']?([^']*)[']?(.*)/i',$body,$b...