剥离 phpbb bbcode

发布于 2024-11-09 02:47:23 字数 493 浏览 0 评论 0原文

我想在我的网站上显示 phpbb3 论坛的最新帖子,但没有 bbcode。 所以我试图去掉 bbcode 但没有成功 例如,其中一篇文章可能是:

[quote="SimonLeBon":3pwalcod]bladie bla bla[/quote:3pwalcod]bla bla bladie bla blaffsd
fsdjhgfd dgfgdffgdfg

要删除 bbcodes,我使用通过谷歌找到的函数,我也尝试了其他几个类似的函数:

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

但这实际上没有任何效果。

I want to display the most recent posts from my phpbb3 forum on my website, but without the bbcode.
so I'm trying to strip the bbcode but without succes
one of the posts for example could be:

[quote="SimonLeBon":3pwalcod]bladie bla bla[/quote:3pwalcod]bla bla bladie bla blaffsd
fsdjhgfd dgfgdffgdfg

to strip bbcodes i use the function i found via google, I've tried several other similiar functions aswell:

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

This however doesn't really have any effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

柠栀 2024-11-16 02:47:23

这将剥离有效的 bbcode(即开始标记与结束标记匹配)。

$str = preg_replace('/\[(\w+)=.*?:(.*?)\](.*?)\[\/\1:\2\]/', '$3', $str);

键盘

可重用函数

function stripBBCode($str) {
   return preg_replace('/\[(\w+)=.*?:(.*?)\](.*?)\[\/\1:\2\]/', '$3', $str);
}

说明

  1. \[ 匹配文字 [
  2. (\w+) 匹配 1 个或多个单词字符并保存在捕获组 1 中。
  3. = 匹配文字 =
  4. .*? 贪婪地匹配 =: 之间除 \n 之外的所有字符。
  5. : 匹配文字 :
  6. (.*?) 贪婪地匹配 :] 之间除 \n 之外的每个字符,并保存在捕获组 <代码>2。
  7. \] 匹配文字 ]
  8. (.*?) 贪婪地匹配 :] 之间除 \n 之外的每个字符,并保存在捕获组 <代码>3。
  9. \[ 匹配文字 [
  10. /\1\2 再次匹配之前的捕获组。
  11. \] 匹配文字 ]

This will strip bbcode, that is valid (i.e. opening tags matching closing tags).

$str = preg_replace('/\[(\w+)=.*?:(.*?)\](.*?)\[\/\1:\2\]/', '$3', $str);

CodePad.

Reusable Function

function stripBBCode($str) {
   return preg_replace('/\[(\w+)=.*?:(.*?)\](.*?)\[\/\1:\2\]/', '$3', $str);
}

Explanation

  1. \[ match literal [.
  2. (\w+) Match 1 or more word characters and save in capturing group 1.
  3. = Match literal =.
  4. .*? Match ungreedily every character except \n between = and :.
  5. : Match literal :.
  6. (.*?) Match ungreedily every character except \n between : and ] and save in capturing group 2.
  7. \] Match literal ].
  8. (.*?) Match ungreedily every character except \n between : and ] and save in capturing group 3.
  9. \[ Match literal [.
  10. /\1\2 Match previous capturing groups again.
  11. \] Match literal ].
药祭#氼 2024-11-16 02:47:23

这是来自 phpBB 的一个(稍微调整为独立的):

/**
* Strips all bbcode from a text and returns the plain content
*/
function strip_bbcode(&$text, $uid = '')
{
    if (!$uid)
    {
        $uid = '[0-9a-z]{5,}';
    }

    $text = preg_replace("#\[\/?[a-z0-9\*\+\-]+(?:=(?:".*"|[^\]]*))?(?::[a-z])?(\:$uid)\]#", ' ', $text);

    $match = return array(
        '#<!\-\- e \-\-><a href="mailto:(.*?)">.*?</a><!\-\- e \-\->#',
        '#<!\-\- l \-\-><a (?:class="[\w-]+" )?href="(.*?)(?:(&|\?)sid=[0-9a-f]{32})?">.*?</a><!\-\- l \-\->#',
        '#<!\-\- ([mw]) \-\-><a (?:class="[\w-]+" )?href="(.*?)">.*?</a><!\-\- \1 \-\->#',
        '#<!\-\- s(.*?) \-\-><img src="\{SMILIES_PATH\}\/.*? \/><!\-\- s\1 \-\->#',
        '#<!\-\- .*? \-\->#s',
        '#<.*?>#s',
    );
    $replace = array('\1', '\1', '\2', '\1', '', '');

    $text = preg_replace($match, $replace, $text);
}

Here's the one from phpBB (slightly adjusted to be standalone):

/**
* Strips all bbcode from a text and returns the plain content
*/
function strip_bbcode(&$text, $uid = '')
{
    if (!$uid)
    {
        $uid = '[0-9a-z]{5,}';
    }

    $text = preg_replace("#\[\/?[a-z0-9\*\+\-]+(?:=(?:".*"|[^\]]*))?(?::[a-z])?(\:$uid)\]#", ' ', $text);

    $match = return array(
        '#<!\-\- e \-\-><a href="mailto:(.*?)">.*?</a><!\-\- e \-\->#',
        '#<!\-\- l \-\-><a (?:class="[\w-]+" )?href="(.*?)(?:(&|\?)sid=[0-9a-f]{32})?">.*?</a><!\-\- l \-\->#',
        '#<!\-\- ([mw]) \-\-><a (?:class="[\w-]+" )?href="(.*?)">.*?</a><!\-\- \1 \-\->#',
        '#<!\-\- s(.*?) \-\-><img src="\{SMILIES_PATH\}\/.*? \/><!\-\- s\1 \-\->#',
        '#<!\-\- .*? \-\->#s',
        '#<.*?>#s',
    );
    $replace = array('\1', '\1', '\2', '\1', '', '');

    $text = preg_replace($match, $replace, $text);
}
南风起 2024-11-16 02:47:23

为什么不使用 PHP 内置的 BBCode 解析工具?

http://php.net/manual/en/book.bbcode.php

Why don't you use the BBCode parsing facilities that are built in to PHP?

http://php.net/manual/en/book.bbcode.php

飞烟轻若梦 2024-11-16 02:47:23

现在使用phpbb自带的函数https://wiki.phpbb.com/Strip_bbcode

Nowadays, use phpbb's own function https://wiki.phpbb.com/Strip_bbcode

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文