使用ckeditor在网页上显示图像,在图像源中添加额外的双引号和斜杠

发布于 2024-11-24 00:54:45 字数 217 浏览 5 评论 0原文

我在textarea上使用ckeditor,在textarea中输入的文本的html源代码保存在数据库中,但是对于图像,src添加了额外的双引号....这会阻止图像在该页面...该怎么办,请帮忙。我正在使用:

mysql_real_escape_string($TextAreaSourceCode);

请帮忙,如何删除 img src 元素中添加的额外引号。

I am using ckeditor on a textarea, the html source code of the text entered in the textarea is saved in the database, but for an image, the src is added with extra double quotes....this stops the image from being visible on the page...what to do please help. I am using :

mysql_real_escape_string($TextAreaSourceCode);

Please help, how to remove the extra quotes added in the img src element.

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

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

发布评论

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

评论(1

月牙弯弯 2024-12-01 00:54:45

只需在输出之前进行向后替换即可。

$text = str_replace('\n"', '"', $text);

mysql_real_escape_string 文档页面上查看您应该替换的其他内容

UPD: mysql_real_escape_string 替换值中的所有危险(SQL 注入的含义)字符。例如替换“on \”等。有关完整列表,请参阅该函数的文档。不知道为什么要添加额外的引号,但问题可能出在这个替换中。

也许如果您向我们提供输入和结果的示例,我可以告诉您更多信息

Just do the backward replacing before output.

$text = str_replace('\n"', '"', $text);

Look what other you should replace on the mysql_real_escape_string documentation page

UPD: mysql_real_escape_string replaces all dangerous (in meaning of SQL-injections) characters in value. For example, replaces " on \" and so on. For full list look documentation on the function. Don't know why it's adding extra quotes, but probably the problem is in this replacement.

Maybe if you provide us with example of input and result I could tell you more

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