在 PHP 中删除 BBCode 标签及其内容 [英] Remove BBCode tags and their content in PHP

查看:44
本文介绍了在 PHP 中删除 BBCode 标签及其内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能的重复:
递归BBCode解析
通过 RegEx 去除 BBCode

在 PHP 中删除字符串的所有 BBCode 标签及其内容的最佳方法是什么?

What is the best way to remove all BBCode tags of a string and their content in PHP?

推荐答案

<?php
function stripBBCode($text_to_search) {
 $pattern = '|[[\/\!]*?[^\[\]]*?]|si';
 $replace = '';
 return preg_replace($pattern, $replace, $text_to_search);
}

echo stripBBCode($text_to_search);
?>

演示

这篇关于在 PHP 中删除 BBCode 标签及其内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆