修剪不剥离空格

时间:2016-03-30 11:59:42

标签: php string trim

我已经阅读了大量答案,但从未找到解决方案。

为什么这不适用于修剪?

$test = trim('Whatever this     is');
echo $test;

这项工作:

$test= preg_replace('/\s+/', ' ', 'Whatever this     is');
echo $test;

预期:

Whatever this is

为什么第一个不起作用,第二个起作用呢?没有奇怪的字符,因为我直接在PHP代码中编写它们。

请不要太快关闭这个

1 个答案:

答案 0 :(得分:6)

trim仅从字符串的开头和结尾剥离空格。请参阅此link