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.
我对数据库中的记录有一点问题。
我正在使用 php 来检索数据,当我记录我的记录(描述)时,我想要:如果有一些文本在我的文本行之间有一些空格,我想打印空行。
我的记录示例:一些文本
其他文字
我想打印我的记录文本之间的空格。
您的问题不完整,请下次提供一些代码。
但我认为您搜索的nl2br函数将 \n 替换为HTML 标记。
echo nl2br($row['description']);
您可以使用
<?php echo "Some text"; ?> <?php echo "Other Text"; ?>