大家好,对php 正则表达式获取网页所有网址和链接文字的简单示例感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看php 正则表达式获取网页所有网址和链接文字的简单示例的例子吧。
/**
* php 正则表达式获取网页所有网址和链接文字
* @arrange (三零.脚本) www.q3060.com
**/
$url='http://www.q3060.com'; $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."</br>"; }