php正则怎么替换a标签href-LMLPHP

本文操作环境:windows7系统、PHP7.1版,DELL G3电脑

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视频教程

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

08-29 10:01