Kindeditor 修改内容时如何不让&nbsp;及 <> 被自动转义

 $html = str_replace('&nbsp;', '&amp;nbsp;', $html);
 $html = str_replace('&gt;', '&amp;gt;', $html);
 $html = str_replace('&lt;', '&amp;lt;', $html);

 

posted @ 2014-05-12 16:14  不负韶华668  阅读(1963)  评论(0)    收藏  举报