Home >Backend Development >PHP Tutorial >html - PHP 关于<p>换行问题

html - PHP 关于<p>换行问题

WBOY
WBOYOriginal
2016-06-06 20:40:431127browse

在php中 或者 在 html中

如果 把 代码 写成这样

<code><p>123123
123</p>
</code>

的话,显示出来的效果是<br>123123 123

如何用PHP把他显示成

<code>123123
123
</code>

而显示的源代码 还是

<code><p>123123
123</p>
</code>

我试过用nl2br函数来处理,<br> 可是代码就变成了

<code><p>123123<br>
123</p>
</code>

求解决方案

回复内容:

在php中 或者 在 html中

如果 把 代码 写成这样

<code><p>123123
123</p>
</code>

的话,显示出来的效果是<br>123123 123

如何用PHP把他显示成

<code>123123
123
</code>

而显示的源代码 还是

<code><p>123123
123</p>
</code>

我试过用nl2br函数来处理,<br> 可是代码就变成了

<code><p>123123<br>
123</p>
</code>

求解决方案

<code>echo 123456
123</code>
End;

源码

<code><pre class="brush:php;toolbar:false">123456
123

或许你的该使用<pre class="brush:php;toolbar:false"></pre> 标签, 不然你不加 <br> html页面是不会换行的!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn