本文整理匯總了PHP中BBCode::split_bbcodes方法的典型用法代碼示例。如果您正苦於以下問題:PHP BBCode::split_bbcodes方法的具體用法?PHP BBCode::split_bbcodes怎麽用?PHP BBCode::split_bbcodes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類BBCode
的用法示例。
在下文中一共展示了BBCode::split_bbcodes方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: split_on_bbcodes
protected static function split_on_bbcodes($text, $allowed = 0, $allow_html = false)
{
global $bb_codes;
# Split all bbcodes.
$text_parts = BBCode::split_bbcodes($text);
# Merge all bbcodes and do special actions depending on the type of code.
$text = '';
while ($part = array_shift($text_parts)) {
if ($part['code'] == 'php') {
# [PHP]
$text .= $allowed ? BBCode::decode_php($part['text']) : nl2br(htmlspecialchars($part['text']));
} elseif ($part['code'] == 'code') {
# [CODE]
if (!$allowed && false !== strpos($part['text'], '<')) {
$part['text'] = nl2br(htmlspecialchars($part['text']));
}
$text .= $allowed ? BBCode::decode_code($part['text']) : $part['text'];
} elseif ($part['code'] == 'quote') {
# [QUOTE] and [QUOTE=""]
if ($part['text'][6] == ']') {
$text .= $bb_codes['quote'] . BBCode::split_on_bbcodes(substr($part['text'], 7, -8), $allowed, $allow_html) . $bb_codes['quote_close'];
} else {
$part['text'] = preg_replace('/\\[quote=["]*(.*?)["]*\\]/si', $bb_codes['quote_name'], BBCode::split_on_bbcodes(substr($part['text'], 0, -8), $allowed, $allow_html), 1);
$text .= $part['text'] . $bb_codes['quote_close'];
}
} elseif ($part['subc']) {
$tmptext = '[' . BBCode::split_on_bbcodes(substr($part['text'], 1, -1)) . ']';
$text .= $part['code'] == 'list' ? BBCode::decode_list($tmptext) : $tmptext;
unset($tmptext);
} else {
if ($allow_html) {
$tmptext = false === strpos($part['text'], '<') ? nl2br($part['text']) : $part['text'];
} else {
$tmptext = nl2br(BBCode::encode_html($part['text']));
}
$text .= $part['code'] == 'list' ? BBCode::decode_list($tmptext) : $tmptext;
unset($tmptext);
}
}
return $text;
}