首页 > 开发 > PHP > 正文

PHP用正则表达式提取网页链接地址

2024-05-04 23:05:49
字体:
来源:转载
供稿:网友

如下面代码,用正则表达式提取其中的链接地址

以下是引用片段:
<div class="pic" id="s3">
<a title=list href="http://www.html.org.cn/down/" target="_blank">阿里西 西源码下载频道</a>
<a href="http://js.html.org.cn/" target="_blank">网页特效演示中心js.alixi xi.com</a>
</div>
<div class="pic" id="s2">
<a title=list href="http://tool.html.org.cn/" target="_blank" dsafsadf>阿 里西西 .com站长工具</a>
<a href="http://html.org.cn/" target="_blank">www.html.org.cn</a>
</div>

实际方法:

以下是引用片段:
preg_match_all(’/(?<=href=")[/w/d/.://]*/’,$str,$fstr);


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表