CakePHP 清理换行 \n

发布于 2024-10-21 16:10:31 字数 168 浏览 2 评论 0原文

我有一个评论框,当有人按 Enter 时,Cake 会将 \n (换行)放入数据库中。当我从数据库检索它时,它的显示方式就像 \n 而不是实际的中断或 HTML a

似乎没有处理 \n 的选项,我无法理解,因为在文本区域中按 Enter 键很常见。我做错了什么?

谢谢 克里斯

I have a comment box and when somebody presses enter, Cake will put a \n (line feed) into the database. When I retrieve this from the db, it is displayed just like \n instead of an actual break or in HTML a
.

There seems to be no option for handling \n, which I cannot understand because it is common to push enter in a textarea. What am I doing wrong?

Thanks
Chris

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

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

发布评论

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

评论(3

柠檬色的秋千 2024-10-28 16:10:31

你忘记了有 php 函数涵盖了这一点:)
nl2br() 是您正在寻找的

echo nl2br(h($data));

注:

you forget that there are php functions covering that :)
nl2br() is what you are looking for

echo nl2br(h($data));

NOTE:

你也可以尝试
echo str_replace("\\n", "
", $variable);

You can also try
echo str_replace("\\n", "<br />", $variable);

终陌 2024-10-28 16:10:31

CakePHP 有它自己的方法:

TextHelper::autoParagraph(string $text)

检查文档: https: //book.cakephp.org/2.0/en/core-libraries/helpers/text.html

CakePHP has it's own method for that:

TextHelper::autoParagraph(string $text)

Check the documentation: https://book.cakephp.org/2.0/en/core-libraries/helpers/text.html

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