【问题标题】:how to remove extra spaces accidentally typed at the end in a text box in php如何删除在php文本框中意外输入的多余空格
【发布时间】:2020-04-19 01:11:52
【问题描述】:

这是我的文本区域的 php 代码,它不会在意外键入的末尾删除任何多余的空间。请帮助如何删除文本框中键入的文本末尾的多余空格

echo"<textarea class='form-control' rows='20' cols='60' id='write".$i."'placeholder='Write Here...' style='font-family: Courier New;font-size: 15px;border:none; border-bottom:2px solid black;height:400px;'></textarea>";

【问题讨论】:

标签: php html removing-whitespace


【解决方案1】:

您可以使用修剪功能:

$string = trim($string);

https://www.php.net/manual/en/function.trim.php

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2012-01-24
    • 2014-08-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-01-05
    • 1970-01-01
    相关资源
    最近更新 更多