php 正则如何实现替换html
时间:2020-10-29 10:03
php正则替换html的方法:首先创建一个PHP示例文件;然后通过正则表达式“preg_replace('/<[^>]*>/','',$string)”替换所有HTML标签即可。
推荐:《PHP视频教程》
PHP正则表达式替换所有HTML标签
preg_replace('/<[^>]*>/','',$string)
以上就是php 正则如何实现替换html的详细内容,更多请关注www.gxlsystem.com其它相关文章!