我正在尝试在脚本中解析BBCode。现在,它可以无缝地工作,直到我尝试缩进的BBCode不仅是粗体或下划线(例如,剧透,URL,字体大小等),然后它就会拧紧。这是我的代码:
function parse_bbcode($text) {
global $db;
$oldtext = $text;
$bbcodes = $db->select('*', 'bbcodes');
foreach ($bbcodes as $bbcode) {
switch ($bbcode->type) {
case 'simple': {
$find = '{content}';
$replace = '${1}';
$text = preg_replace(
'/\['.$bbcode->tag.'\](.+)\[\/'.$bbcode->tag.'\]/i',
str_replace($find, $replace, $bbcode->html),
$text);
break;
}
case 'property':
case 'options': {
$find = array ( '{property}', '{content}' );
$replace = array ( '${1}', '${2}' );
$text = preg_replace(
'/\['.$bbcode->tag.'\=(.[^\"]*)\](.+)\[\/'.$bbcode->tag.'\]/i',
str_replace($find, $replace, $bbcode->html),
$text);
break;
}
}
}
return $text;
}
现在我的猜测是RegEx不喜欢模式中的递归性。我该如何改善?这样的示例$ bbcode对象是这样的:
stdClass::__set_state(array(
'id' => '2',
'name' => 'Italic',
'type' => 'simple',
'tag' => 'i',
'button_image' => NULL,
'button_text' => '<i>I</i>',
'options' => '',
'prompt' => NULL,
'html' => '<i>{content}</i>',
'order' => '1',
))
stdClass::__set_state(array(
'id' => '3',
'name' => 'URL',
'type' => 'property',
'tag' => 'url',
'button_image' => NULL,
'button_text' => 'http://',
'options' => '',
'prompt' => 'URL address',
'html' => '<a href="{property}">{content}</a>',
'order' => '4',
))
最佳答案
正如戈登在评论PHP has a BBCode parser, so no reason to reinvent the wheel中所说。
但是,本机解析器是PECL软件包,因此您必须安装它。如果这不是一个选择(例如,由于共享主机),那么还有一个PEAR软件包:http://pear.php.net/package/HTML_BBCodeParser
除此之外,您还可以使用BB代码源代码浏览论坛,并使用其解析器或对其进行改进。在http://www.bbcode.org/implementations.php处还列出了几种PHP实现。
关于php - 递归BBCode解析,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6773192/