php怎么通过正则表达式删除a标签?
发表于:2024-11-30 作者:热门IT资讯网编辑
编辑最后更新 2024年11月30日,目的:使用正则表达式删除下列内容中的a标签,同时保留a标签内容欢迎来到www.php.cn修改后:欢迎来到www.php.cn解决方法:$str = "欢迎来到www.php.cn";$str = h
目的:
使用正则表达式删除下列内容中的a标签,同时保留a标签内容
欢迎来到www.php.cn
修改后:
欢迎来到www.php.cn
解决方法:
$str = "欢迎来到www.php.cn";$str = htmlspecialchars_decode($str);$str = preg_replace("/]*>(.*?)<\/a>/is", "$1", $str);echo $str;
运行结果为:
欢迎来到www.php.cn
以上就是php中如何使用正则表达式删除a标签的详细内容,更多请关注其它相关文章!