Why does PHP echo#39;d text lose its formatting?(为什么 PHP 回显的文本会丢失其格式?)
问题描述
任何想法为什么来自 DB 的格式化文本,当在 php 中回显时会丢失其格式,即没有新行?谢谢!
Any ideas why formatted text from DB, when echo-ed out in php loses its formatting, i.e. no new lines? Thanks!
推荐答案
使用nl2br()
.
浏览器会忽略新行.这就是为什么您会看到所有没有换行符的文本.nl2br() 将新行转换为 <br/>
标记,显示为浏览器中的新行.
New lines are ignored by browser. That's why you see all text without line breaks. nl2br() converts new lines to <br />
tags that are displayed as new lines in browsers.
如果你想在 <textarea>
中显示你的文本,你不需要把所有的新行都转换成 <br/>
.无论如何,如果你这样做......你会在换行的地方看到<br/>
"作为文本.
If you want to display your text in <textarea>
, you don't need to convert all new lines to <br />
. Anyway, if you do it... you will see "<br />
"s as text in new lines places.
这篇关于为什么 PHP 回显的文本会丢失其格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 PHP 回显的文本会丢失其格式?
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01