当前位置:Gxlcms > PHP教程 > php正则怎么替换a标签href

php正则怎么替换a标签href

时间:2021-07-01 10:21:17 帮助过:9人阅读

php正则替换a标签href的方法:首先创建一个PHP示例文件;然后通过正则表达式“reg_replace('/<a .*?href="(.*?)".*?>/is',"<a href='###'>");”匹配A标签href并替换即可。

本文操作环境: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的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行