1

我在创建用于SyntaxHighlighter的 BBCode 时遇到了一些问题

function bb_parse_code($str) {
    while (preg_match_all('`\[(code)=?(.*?)\]([\s\S]*)\[/code\]`', $str, $matches)) foreach ($matches[0] as $key => $match) {
        list($tag, $param, $innertext) = array($matches[1][$key], $matches[2][$key], $matches[3][$key]); 
        switch ($tag) {
            case 'code': $replacement = '<pre class="brush: '.$param.'">'.str_replace("    ", " ", str_replace(array("<br>", "<br />"), "\n", $innertext))."</pre>"; break;

        }
        $str = str_replace($match, $replacement, $str);
    }
    return $str;
}

我有bbcode:

[b]bold[/b]
[u]underlined[/u]
[code=js]function (lol) {
alert(lol);
}[/code]
[b]bold2[/b]
[code=php]
<? echo 'lol' ?>
[/code]

这会返回: BB码

我知道问题出([\s\S]*)在允许任何字符的正则表达式上,但是如何使代码与换行符一起工作?

4

1 回答 1

1

您应该使用以下模式:

`\[(code)=?(.*?)\](.*?)\[/code\]`s

几个变化:

于 2012-10-23T19:04:58.823 回答