本文介绍了在 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 标签及其内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!