嵌套 bb 代码引用如何>

发布于 2024-12-01 09:26:41 字数 1331 浏览 1 评论 0原文

你好,我使用一个非常基本的 bbcode 解析器。

你们能帮我解决我的问题吗?

但是,例如,当这样写时:

[quote=tanab][quote=1][code]a img{
text-decoration: none;
}[/code][/quote][/quote]

输出是这样的:

tanab said:
[quote=1]
a img{
    text-decoration: none;
}
[/quote] 

我将如何解决这个问题?我真的很不擅长 preg_replace 的东西。

这是我的解析器:

function bbcode($input){
$input = htmlentities($input);

$search = array(
            '/\[b\](.*?)\[\/b\]/is',
            '/\[i\](.*?)\[\/i\]/is',
            '/\[img\](.*?)\[\/img\]/is',
            '/\[url=(.*?)\](.*?)\[\/url\]/is',
            '/\[code\](.*?)\[\/code\]/is',
            '/\[\*\](.*?)/is',
            '/\\t(.*?)/is',
            '/\[quote=(.*?)\](.*?)\[\/quote\]/is',
);

$replace = array(
            '<b>$1</b>',
            '<i>$1</i>',
            '<img src="$1">',
            '<a href="$1">$2</a>',
            '<div class="code">$1</div>',
            '<ul><li>$1</li></ul>',
            '&nbsp;&nbsp;&nbsp;&nbsp;',
            '<div class="quote"><div class="quote-writer">$1 said:</div><div class="quote-body">$2</div></div>',

);

return preg_replace($search,$replace,$input);

}

Hi im using a pretty basic bbcode parser.

could you guys help me with a problem of mine?

but when for example this is written:

[quote=tanab][quote=1][code]a img{
text-decoration: none;
}[/code][/quote][/quote]

the output is this:

tanab said:
[quote=1]
a img{
    text-decoration: none;
}
[/quote] 

how would i go and fix that? im realllly bad at the whole preg_replace stuff.

this is my parser:

function bbcode($input){
$input = htmlentities($input);

$search = array(
            '/\[b\](.*?)\[\/b\]/is',
            '/\[i\](.*?)\[\/i\]/is',
            '/\[img\](.*?)\[\/img\]/is',
            '/\[url=(.*?)\](.*?)\[\/url\]/is',
            '/\[code\](.*?)\[\/code\]/is',
            '/\[\*\](.*?)/is',
            '/\\t(.*?)/is',
            '/\[quote=(.*?)\](.*?)\[\/quote\]/is',
);

$replace = array(
            '<b>$1</b>',
            '<i>$1</i>',
            '<img src="$1">',
            '<a href="$1">$2</a>',
            '<div class="code">$1</div>',
            '<ul><li>$1</li></ul>',
            '    ',
            '<div class="quote"><div class="quote-writer">$1 said:</div><div class="quote-body">$2</div></div>',

);

return preg_replace($search,$replace,$input);

}

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

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

发布评论

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

评论(1

把人绕傻吧 2024-12-08 09:26:41

可以使用递归正则表达式进行调整:

 '/\[quote=(.*?)\](((?R)|.*?)+)\[\/quote\]/is'

这至少可以确保输出 div 不会被错误地嵌套。但是您仍然需要运行正则表达式两到三次才能捕获所有引用块。

否则,需要使用 preg_replace_callback 重写代码。我懒得展示,因为这个问题已经出现了几十次(尝试网站搜索!),之前已经解决了,等等。

This could be adapted with a recursive regex:

 '/\[quote=(.*?)\](((?R)|.*?)+)\[\/quote\]/is'

Which will at least ensure that the output divs will not be incorrectly nested. But you would still have to run the regex twice or three times to catch all quote blocks.

Otherwise it would require a rewrite of your code with preg_replace_callback. Which I cannot be bothered to showcase, since this came up a few dozen times already (try the site search!), has been solved before, etc.

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