发布网友 发布时间:2022-04-20 06:25
共4个回答
懂视网 时间:2022-04-06 05:21
php正则方法删除a标签的方法:使用函数【preg_replace】保留,代码为【$str = htmlspecialchars_decode($str);$str = preg_replace("/]*>(.*?)< a="">/is",】。
php正则方法删除a标签的方法:
目的:
使用正则表达式删除下列内容中的a标签,同时保留a标签内容
欢迎来到gxlcmswww.php.cn
修改后:
欢迎来到gxlcmswww.php.cn
解决方法:
$str = " 欢迎来到gxlcmswww.php.cn "; $str = htmlspecialchars_decode($str); $str = preg_replace("/]*>(.*?)</a>/is", "$1", $str); echo $str; 运行结果为: 1
想了解更多编程学习,敬请关注php培训栏目!
热心网友 时间:2022-04-06 02:29
不用去, 你是不是不想让 这段html解析?热心网友 时间:2022-04-06 03:47
PHP有一个内建的函数,strip_tags,可以直接去掉标签。参考资料:http://cn.php.net/manual/en/function.strip-tags.php
热心网友 时间:2022-04-06 05:22
用 strip_tags 这个函数试试