我有这个功能:
function bb_parse($string) {
$string = $this->quote($string);
$string=nl2br($string);
$string = html_entity_decode(stripslashes(stripslashes($string)));
$tags = 'b|i|u';
while (preg_match_all('`\[('.$tags.')=?(.*?)\](.+?)\[/\1\]`', $string, $matches)) foreach ($matches[0] as $key => $match) {
list($tag, $param, $innertext) = array($matches[1][$key], $matches[2][$key], $matches[3][$key]);
switch ($tag) {
case 'b': $replacement = "<strong>$innertext</strong>"; break;
case 'i': $replacement = "<em>$innertext</em>"; break;
case 'u': $replacement = "<u>$innertext</u>"; break;
}
$string = str_replace($match, $replacement, $string);
}
return $string;
}
如您所见,我可以轻松地制作带有粗体、斜体和下划线的 BBCode。虽然,我也在尝试向这个功能添加笑脸,但没有运气。
我试图简单地将:)添加到 $tags,然后在案例中添加笑脸 :) img,但这不起作用。
我该怎么做,所以我也可以为此添加表情符号?
提前致谢。