将分隔符更改#
为/
. 并将“ /[/b\]
”改为“ \[\/b\]
”。您需要转义“/”,因为您需要它作为文字字符。
也许“ array()
”应该使用括号:“ array[]
”。
注意:我从这里借用了答案:Convert BBcode to HTML using JavaScript/jQuery
编辑:我忘记了“/”不是元字符,所以我相应地编辑了答案。
更新:我无法使其与功能一起使用,但这个工作。见评论。(我在接受的答案中使用小提琴来测试我上面链接的问题。您也可以这样做。)请注意,这是 JavaScript。您的问题中有 PHP 代码。(至少在一段时间内,我无法帮助您编写 PHP 代码。)
$str = 'this is a [b]bolded[/b], [title=xyz xyz]Title of something[/title]';
//doesn't work (PHP function)
//$str = htmlentities($str);
//notes: lose the single quotes
//lose the text "array" and use brackets
//don't know what "ig" means but doesn't work without them
$format_search = [
/\[b\](.*?)\[\/b\]/ig,
/\[title=(.*?)\](.*?)\[\/title\]/ig
];
$format_replace = [
'<strong>$1</strong>',
'<div class="box_header" id="$1"><center>$2</center></div>'
];
// Perform the actual conversion
for (var i =0;i<$format_search.length;i++) {
$str = $str.replace($format_search[i], $format_replace[i]);
}
//place the formatted string somewhere
document.getElementById('output_area').innerHTML=$str;
</p>
更新2:现在使用PHP...(对不起,您必须根据$replacements
自己的喜好格式化。我只是添加了一些标签和文本来演示更改。)如果“标题”仍然存在问题,请查看您的文本类型试图格式化。我将标题“=”设为可选,?
因此它应该可以正常工作,例如:“[title=id with one or more words]Title with id[/title]”和“[title]Title without id[/title]。不确定是否id
允许该属性包含空格,我猜不是:http://reference.sitepoint.com/html/core-attributes/id。
$str = '[title=title id]Title text[/title] No style, [b]Bold[/b], [i]emphasis[/i], no style.';
//try without this if there's trouble
$str = htmlentities($str);
//"#" works as delimiter in PHP (not sure abut JS) so no need to escape the "/" with a "\"
$patterns = array();
$patterns = array(
'#\[b\](.*?)\[/b\]#',
'#\[i\](.*?)\[/i\]#', //delete this row if you don't neet emphasis style
'#\[title=?(.*?)\](.*?)\[/title\]#'
);
$replacements = array();
$replacements = array(
'<strong>$1</strong>',
'<em>$1</em>', // delete this row if you don't need emphasis style
'<h1 id="$1">$2</h1>'
);
//perform the conversion
$str = preg_replace($patterns, $replacements, $str);
echo $str;