如何删除php中短语开头的空格?

时间:2018-01-13 17:46:01

标签: php

我想从短语的开头和之后删除空格



$mystring = "			Test Business Group Co.,Ltd     ";



 单词之前和之后的空格是随机的,所以我怎么能删除php中的空格开头和之后。实际结果是这样的

$mystring = "Test Business Group Co.,Ltd";

无论如何都要这样做?

1 个答案:

答案 0 :(得分:0)

您可以使用trim()函数从字符串的开头和结尾删除空格:http://php.net/manual/en/function.trim.php

$string = "   hello  world   ";
$better_string = trim($string);

-> "hello world"