gpt4 book ai didi

php - 表格删除空格

转载 作者:行者123 更新时间:2023-11-28 04:32:58 25 4
gpt4 key购买 nike

<form action="class.php" method="POST">
thread link:
<br>
<input type="text" name="thread">
<input type="submit" value="Submit">
</form>

我有这个简单的表格。输入以多个空格开头的字符串时,类似于

 "           test"

我的 PHP 代码

echo 'test:'.$_POST['thread'];

将打印 test: test。它会删除除一个空格之外的所有空格。

所有空间都去了哪里,为什么会这样?

最佳答案

HTML 规范告诉我们,渲染器会移除多个空格。这在某些情况下很有用。为避免这种情况,您可以将此字段的内容放在 <pre></pre> 中。堵塞。像那样:

echo '<pre>test:'.$_POST['thread'].'</pre>';

关于php - 表格删除空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27999277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com