本文介绍了TinyMCE UTF-8保存到MySQL数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将TinyMCE输入发送到POST(一个php文件),然后保存在MySQL数据库中。
I send TinyMCE input to POST (a php file), then save it in MySQL Database.
输入具有UTF-8(土耳其字符)。因此,当我在TinyMCE输入中键入
I guess these characters like ü are the HTML equivalents of Turkish characters, so htmlspecialchars_decode() should work, but it does not accept Turkish characters. Maybe a way for htmlspecialchars_decode to decode UTF-8 Characters ?
推荐答案
使用此代码
<script type="text/javascript"> tinymce.init({ entity_encoding : "raw" }); </script>
这篇关于TinyMCE UTF-8保存到MySQL数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!