CKEditor向带有属性的HTML标签添加反斜杠

发布于 2024-11-14 22:15:09 字数 229 浏览 1 评论 0原文

当我提交带有反斜杠的页面时,CKEditor 会转义所有 HTML 属性。

<img alt=\"\" src=\"/ckfinder/userfiles/images/a.jpg\" style=\"width: 600px; height: 450px;\" />  

它在我的本地计算机上工作正常,问题仅发生在实时服务器中。

可能是什么问题?

CKEditor is escaping all the HTML attributes when I submit the page with backslashes.

<img alt=\"\" src=\"/ckfinder/userfiles/images/a.jpg\" style=\"width: 600px; height: 450px;\" />  

It's working fine in my local machine and the issue is happening only in the live server.

What could be the problem?

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

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

发布评论

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

评论(1

迷荒 2024-11-21 22:15:09

使用 php 手册中的示例代码修复了它

function strip_magic_slashes($str) {    return get_magic_quotes_gpc() ? stripslashes($str) : $str; }

Fixed it using sample code from php Manual

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