PHP Sanitized markdown - html 输出

发布于 2024-11-19 18:55:46 字数 450 浏览 7 评论 0原文

我的网站上有 WMD 编辑器,并将降价存储在数据库中。但在我将降价发送到数据库之前,我使用 mysql_real_escape_string 对其进行过滤,如下所示:

$to_database = mysql_real_escape_string($_POST['markdown']);

没关系。但现在我想展示它,所以我使用 PHP Markdown (它将 markdown 转换为 html)。但问题是它显示了 \r\n\n 而不是新行。我尝试了 nl2br 功能,但没有帮助。即使我不转义输出(不将 markdown 转换为 html 并使用 htmlpurifier),我仍然得到 \n 而不是新行。 仅当我删除 mysql_real_escape_string 时,它看起来才正常。

bbbbbbbbbb 嗯嗯嗯

I have WMD editor on my site, and i store the markdown in the DB. But before i send the markdown to database i filter it with mysql_real_escape_string, like that:

$to_database = mysql_real_escape_string($_POST['markdown']);

And it's okay. But now I want to show it, so i use PHP Markdown (which converts markdown to html). But the problem is that it shows me \r\n and \n instead of new lines. I tried nl2br function, but it didn't help. Even if I do not escape the output (do not convert markdown to html and using htmlpurifier) I still get \n instead of new lines.
Only when I remove mysql_real_escape_string it looks fine.

bbbbbbbbbbb
nnnnnnnnn

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

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

发布评论

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

评论(2

素染倾城色 2024-11-26 18:55:46

您的输入层上可能有一些东西,并使用反斜杠转义传入的字符,因此当您使用 mysql_real_escape_string 时,您实际上会获得双重转义的内容。

如果你很不幸,那件事可能是 magic_quotes_gpc 在这种情况下你应该 尽快摆脱它,或者如果你真的不能,那么解决这个问题

You may have something sitting on your input layer and escaping incoming characters with backslashes, so that when you use mysql_real_escape_string you're actually getting double-escaped content.

If you are very unlucky that thing might be magic_quotes_gpc in which case you should get rid of it ASAP, or if you really can't then work around it.

红ご颜醉 2024-11-26 18:55:46

它们正在被转换并且不再充当换行符。您想要替换它们:

$markdown = str_replace('\r\n','<br/>',$_POST['markdown']);
$markdown = str_replace('\n','<br/>',$markdown);

您可能还想这样做:

$markdown = html_entity_decode($markdown);

They are being converted and are no longer acting as line breaks. You want to replace them:

$markdown = str_replace('\r\n','<br/>',$_POST['markdown']);
$markdown = str_replace('\n','<br/>',$markdown);

You might also want to do this:

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