标签: php comments emoticons
我正在使用PHP构建一个支持评论帖子的网站。我希望用户能够在评论中使用表情符号,例如:) :D等。现在我想知道实现它们的最佳做法。到目前为止我才得到这个:
:) :D
<?php str_replace(":)",'<img src="smiley.png" />',$comment); ?>