0

我有这个功能:

  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,但这不起作用。

我该怎么做,所以我也可以为此添加表情符号?

提前致谢。

4

2 回答 2

1

只需创建一个执行简单str_replace的函数,我会说:

<?php

function smilies( $text ) {
    $smilies = array(
        ';)' => '<img src="wink.png" />',
        ':)' => '<img src="smile.png" />'
    );

    return str_replace( array_keys( $smilies ), array_values( $smilies ), $text );
}

$string = '[b]hello[/b] smile: :)';

echo smilies( bb_parse( $string ) );
于 2012-04-23T07:03:54.500 回答
0

http://php.net/manual/en/function.preg-quote.php

你必须逃避你的笑脸标签。

 $tags = 'b|i|u|'.preg_quote(":)");
于 2012-04-23T07:08:23.153 回答