日期:2012-06-10 浏览次数:20473 次
如下面代码,用正则表达式提取其中的链接地址
以下是引用片段: <div class="pic" id="s3"> <a title=list href="http://www.aiyiweb.com/down/" target="_blank">阿里西 西源码下载频道</a> <a href="http://js.aiyiweb.com/" target="_blank">网页特效演示中心js.alixi xi.com</a> </div> <div class="pic" id="s2"> <a title=list href="http://tool.aiyiweb.com/" target="_blank" dsafsadf>阿 里西西aiyiweb .com站长工具</a> <a href="http://aiyiweb.com/" target="_blank">www.aiyiweb.com</a> </div> |
实际方法:
以下是引用片段:
preg_match_all(’/(?<=href=")[\w\d\.:\/]*/’,$str,$fstr);