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.
我有一个输入文本表单,但有时某些表单没有填充文本,但我不想在我的回显页面中生成空白。如果我的输入文本没有在表单中输入,我该如何消除这个丢失的空间。
<? echo $rows['info']; ?>
<? echo trim($rows['info']); ?>
http://php.net/manual/en/function.trim.php
您应该使用 phptrim()函数。
trim()
使用修剪:
添加 <br />:
$info = trim($rows['info']); if (!isEmpty($info)) { echo $info . "<br />"; }