如何使用bb代码更改背景颜色


How to change background color with bb code

我正在尝试制作bbcode系统。我想替换 [bg=color code]color text[/bg]<span style="background-color:color code;">color text</span>

preg_replace.对我有什么想法吗?

尝试以下代码

<?php
function showBBcodes($text) {
    $find = array(
        '~'[background-color=(.*?)'](.*?)'[/background-color']~s'
    );
    $replace = array(
        '<span style="background-color:$1;">$2</span>'
    );
    return preg_replace($find,$replace,$text);
}
$bbtext = "[background-color=green] This is Backgroud color text [/background-color]";
$htmltext = showBBcodes($bbtext);
echo $htmltext;
?>