php 正则如何替换a标签-LMLPHP

推荐:《PHP视频教程

php正则匹配A标签href并替换

代码如下:

$file = "<a href="http://www.baidu.com">baidu</a>";
$file = preg_replace('/<a .*?href="(.*?)".*?>/is',"<a href='###'>",$file);
//输出结果
<a href="###">baidu</a>
登录后复制

以上就是php 正则如何替换a标签的详细内容,更多请关注Work网其它相关文章!

09-09 09:54