Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在表单中添加了一个文本区域。问题是当保存换行符时,它会正确保存到数据库中,但在视图页面中,根本没有换行符。
示例: 在表单的文本区域中键入: 这 是 一个 示例
保存到数据库中: 这 是 一个 例子
查看页面显示为: 这是一个示例
有人对如何在视图页面中显示换行符有任何想法吗?
在您的视图页面中使用nl2br功能。
嗨,如果您使用纯文本,请使用 h()。
echo nl2br(h($your_field_name));