php ueditor 转译,ThinkPHP+UEditor中HTML代码被强制转义解决办法

保存到数据库前:

$content = htmlspecialchars(stripslashes(POST['content']));

模板赋值的时候:

{$content|htmlspecialchars_decode}