1

可能重复:
php regex [b] 到 <b>

我在使用正则表达式时遇到问题,我是一个绝对的正则表达式菜鸟。我看不出尝试将 HTML 转换回“BBCode”时出了什么问题。

有人可以看看“取消引用”功能并告诉我我正在犯的明显错误吗?(我知道这很明显,因为我总是发现不明显的错误)

注意:我没有使用递归正则表达式,因为我无法理解它并且已经开始以这种方式整理引号,以便它们嵌套。

<?php
function quote($str){
    $str = preg_replace('@\[(?i)quote=(.*?)\](.*?)@si', '<div class="quote"><div class="quote-title">\\1 wrote:</div><div class="quote-inner">\\2', $str);
    $str = preg_replace('@\[/(?i)quote\]@si', '</div></div>', $str);
    return $str;
}

function unquote($str){
    $str = preg_replace('@\<(?i)div class="quote"\>\<(?i)div class="quote_title"\>(.*?)wrote:\</(?i)div\><(?i)div class="quote-inner"\>(.*?)@si', '[quote=\\1]\\2',  $str);
    $str = preg_replace('@\</(?i)div\></(?i)div\>@si', '[/quote]', $str);
}
?>

这只是一些帮助测试它的代码:

<html>
<head>
    <style>
    body {
        font-family: sans-serif;
    }
    .quote {
        background: rgba(51,153,204,0.4)  url(../img/diag_1px.png);
        border: 1px solid rgba(116,116,116,0.36);
        padding: 5px;
    }

    .quote-title, .quote_title {
        font-size: 18px;
        margin: 5px;
    }

    .quote-inner {
        margin: 10px;
    }
    </style>
</head>
<body>
    <?php
    $quote_text = '[quote=VCMG][quote=2xAA]DO RECURSIVE QUOTES WORK?[/quote]I have no idea.[/quote]';
    $quoted = quote($quote_text);
    echo $quoted.'<br><br>'.unquote($quoted); ?>
</body>

在此先感谢,山姆。

4

2 回答 2

3

好吧,您可以首先将您的 php 类设置为quote-title或者quote_title但保持一致。

然后,将 a 添加return $str;到您的第二个函数中,您应该就快到了。

你可以简化你的正则表达式:

function quote($str){
    $str = preg_replace('@\[quote=(.*)\]@siU', '<div class="quote"><div class="quote-title">\\1 wrote:</div><div class="quote-inner">', $str);
    $str = preg_replace('@\[/quote\]@si', '</div></div>', $str);
    return $str;
}

function unquote($str){
    $str = preg_replace('@<div class="quote"><div class="quote-title">(.*) wrote:</div><div class="quote-inner">@siU', '[quote=\\1]',  $str);
    $str = preg_replace('@</div></div>@si', '[/quote]', $str);
    return $str;
}

但请注意不要用不同的调用替换引号的开始和结束标记。如果您碰巧有其他 bbcode 创建</div></div>代码,我认为取消引用会产生一些奇怪的行为。

于 2012-10-07T22:23:47.850 回答
0

就个人而言,我利用了这样一个事实,即生成的 HTML 基本上是:

<div class="quote">Blah <div class="quote">INCEPTION!</div> More blah</div>

重复运行正则表达式,直到没有更多匹配项:

do {
    $str = preg_replace( REGEX , REPLACE , $str , -1 , $c);
} while($c > 0);

此外,将其作为一个正则表达式来使这更容易:

'(\[quote=(.*?)\](.*?)\[/quote\])is'
'<div class="quote"><div class="quote-title">$1 wrote:</div><div class="quote-inner">$1</div></div>'
于 2012-10-07T22:31:27.630 回答