如何强制 PHP 读取换行符并返回为
标题有点不对,抱歉。但具体情况是什么。
我正在从 MySQL 数据库读取字段格式为“mediumtext”。
目前,它知道何时通过按 Enter/Return 出现新行。不涉及 html。
但是,当我将其从数据库中拉到我的页面上时,没有格式化。然而,如果你看一下 html 代码,它会用新行格式化得很漂亮!
我已经为一些简单的 BBCode 设置了查找/替换功能,因此也许可以使用它。
那么有人知道如何使用查找/替换来查找“新行”吗?或者如何简单地强制新行一些,如果你明白我的话?
The title is a little off im sorry. however what the scenario IS.
I'm reading from a MySQL Database the field format is "mediumtext".
At current it knows when there is a new line from hitting enter/return. there is no html involved.
however when i pull this from the database onto my page, there is no formatting. however if you look at the html the code it beautifuly formatted with new lines!
ive already got a find/replace function setup for some simple BBCode so might be able to use this.
so does anybody have ideas on how I can either use my find/replace to find "new lines?" or how to simply force the new lines some how, if you understand me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
nl2br
— 在文件中的所有换行符之前插入 HTML 换行符string手册示例:
将输出
You can use
nl2br
— Inserts HTML line breaks before all newlines in a stringExample from Manual:
will output