当前位置:编程学习 > php >>

php获取超链接文本内容的几款正则表达式

php教程获取超链接文本内容的几款正则表达式

//方法一

preg_match_all('/<(a|a)[s]{0,1}[w=":()]*>[nrn]*(check user)[nrn]*</(a|a)>/i',$string,$matches);

//方法二

preg_match_all('/<a[dd]*>check user</a>/i',$string,$matches);

print_r($matches[0]);

//方法三

preg_match_all('/<a[^>]*>[^<]*</a>/i',$string,$matches);

print_r($matches[0]);

//方法四

preg_match_all('/<a.+?>check user</a>/is',$str,$arr);


//方法五

preg_match_all('/<a.+?>check user</a>/is',$str,$arr);

补充:Php教程,Php常用代码 
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,