标签: php preg-replace html-entities
我用它来取代表情符号:
$msg = preg_replace('#:\)#', '<img src="img.gif" />', $msg);
在我使用htmlentites之前,它运行良好:
$msg = htmlentities(stripslashes($msg), ENT_QUOTES | ENT_HTML5, "ISO-8859-1");
所以,我不知道如何解决问题 谢谢你的帮助。