我已经阅读了大量答案,但从未找到解决方案。
为什么这不适用于修剪?
$test = trim('Whatever this is');
echo $test;
这项工作:
$test= preg_replace('/\s+/', ' ', 'Whatever this is');
echo $test;
预期:
Whatever this is
为什么第一个不起作用,第二个起作用呢?没有奇怪的字符,因为我直接在PHP代码中编写它们。
请不要太快关闭这个