所见即所得编辑器的多语言问题

发布于 2024-12-10 14:07:40 字数 282 浏览 0 评论 0原文

我在系统中使用tinymce 来发布我的帖子,并遇到了重音字符的问题,现在这是我这边发生的事情。

如果我输入法语重音字符,可以说 à 我的小 mce 将其转换为 à 但我确实需要保存这个字符 à在我的数据库中而不是保存à

我也尝试过 ckEditor 但问题是一样的。

谁能告诉我如何克服这个问题,因为我的截止日期很紧,而且它真的很令人头痛,如果有人能提供帮助,那就太好了。

I am using tinymce for my posts in the system and getting problem with accented charachters, now here is what happened on my side.

If I type french accented character lets say à my tiny mce converts it into à but I really do need to save this character à in my database rather than saving à.

I have also tried with ckEditor but the problem is same.

Can anyone tell me how to overcome this problem as I am on tight deadline and its really becoming a headache, it will be great if anyone can help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

热情消退 2024-12-17 14:07:40

好的,我已经使用 php 法语口音数组解决了这个问题。我创建了以下功能。

    function replaceAccents($content)
    {
        //French Accent Array
        $arrFrenchAccent=array('À'=>'À', 'à'=>'à', 'Á'=>'Á', 'á'=>'á', 'Â'=>'Â', 'â'=>'â', 'Ã'=>'Ã', 'ã'=>'ã', 'Ä'=>'Ä', 'ä'=>'ä', 'Å'=>'Å', 'å'=>'å', 'Æ'=>'Æ', 'æ'=>'æ', 'Ç'=>'Ç', 'ç'=>'ç', 'Ð'=>'Ð', 'ð'=>'ð', 'È'=>'È', 'è'=>'è', 'É'=>'É', 'é'=>'é', 'Ê'=>'Ê', 'ê'=>'ê', 'Ë'=>'Ë', 'ë'=>'ë', 'Ì'=>'Ì', 'ì'=>'ì', 'Í'=>'Í', 'í'=>'í', 'Î'=>'Î', 'î'=>'î', 'Ï'=>'Ï', 'ï'=>'ï', 'Ñ'=>'Ñ', 'ñ'=>'ñ', 'Ò'=>'Ò', 'ò'=>'ò', 'Ó'=>'Ó', 'ó'=>'ó', 'Ô'=>'Ô', 'ô'=>'ô', 'Õ'=>'Õ', 'õ'=>'õ', 'Ö'=>'Ö', 'ö'=>'ö', 'Ø'=>'Ø', 'ø'=>'ø', 'Œ'=>'Œ', 'œ'=>'œ', 'ß'=>'ß', 'Þ'=>'Þ', 'þ'=>'þ', 'Ù'=>'Ù', 'ù'=>'ù', 'Ú'=>'Ú', 'ú'=>'ú', 'Û'=>'Û', 'û'=>'û', 'Ü'=>'Ü', 'ü'=>'ü', 'Ý'=>'Ý', 'ý'=>'ý', 'Ÿ'=>'Ÿ', 'ÿ'=>'ÿ');     

        //Fliping arrays(keys and values) removing indexes using array_values.
        $originalFrench =   array_values(array_flip($arrFrenchAccent));
        //removing indexes using array_values.
        $arrFrenchAccent    =   array_values($arrFrenchAccent);
        //replacing e.g À with À within the content
        $content    =   utf8_encode(str_replace($arrFrenchAccent,$originalFrench,$content));
        return $content;
    }

我希望它能帮助任何遇到同样问题的人。

问候,
穆斯塔法

ok I have solved it using php french accents array. Following function I have created.

    function replaceAccents($content)
    {
        //French Accent Array
        $arrFrenchAccent=array('À'=>'À', 'à'=>'à', 'Á'=>'Á', 'á'=>'á', 'Â'=>'Â', 'â'=>'â', 'Ã'=>'Ã', 'ã'=>'ã', 'Ä'=>'Ä', 'ä'=>'ä', 'Å'=>'Å', 'å'=>'å', 'Æ'=>'Æ', 'æ'=>'æ', 'Ç'=>'Ç', 'ç'=>'ç', 'Ð'=>'Ð', 'ð'=>'ð', 'È'=>'È', 'è'=>'è', 'É'=>'É', 'é'=>'é', 'Ê'=>'Ê', 'ê'=>'ê', 'Ë'=>'Ë', 'ë'=>'ë', 'Ì'=>'Ì', 'ì'=>'ì', 'Í'=>'Í', 'í'=>'í', 'Î'=>'Î', 'î'=>'î', 'Ï'=>'Ï', 'ï'=>'ï', 'Ñ'=>'Ñ', 'ñ'=>'ñ', 'Ò'=>'Ò', 'ò'=>'ò', 'Ó'=>'Ó', 'ó'=>'ó', 'Ô'=>'Ô', 'ô'=>'ô', 'Õ'=>'Õ', 'õ'=>'õ', 'Ö'=>'Ö', 'ö'=>'ö', 'Ø'=>'Ø', 'ø'=>'ø', 'Œ'=>'Œ', 'œ'=>'œ', 'ß'=>'ß', 'Þ'=>'Þ', 'þ'=>'þ', 'Ù'=>'Ù', 'ù'=>'ù', 'Ú'=>'Ú', 'ú'=>'ú', 'Û'=>'Û', 'û'=>'û', 'Ü'=>'Ü', 'ü'=>'ü', 'Ý'=>'Ý', 'ý'=>'ý', 'Ÿ'=>'Ÿ', 'ÿ'=>'ÿ');     

        //Fliping arrays(keys and values) removing indexes using array_values.
        $originalFrench =   array_values(array_flip($arrFrenchAccent));
        //removing indexes using array_values.
        $arrFrenchAccent    =   array_values($arrFrenchAccent);
        //replacing e.g À with À within the content
        $content    =   utf8_encode(str_replace($arrFrenchAccent,$originalFrench,$content));
        return $content;
    }

I hope it will help anyone who gets the same problem.

Regards,
Mustafa

彼岸花ソ最美的依靠 2024-12-17 14:07:40

检查tinymce参数entity_encoding。

Check the tinymce parameter entity_encoding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文