如何在php中删除两个单词之间的空格。例如,'Hello World'
应返回'HelloWorld'
。
我尝试使用trim()
,但它没有用。
答案 0 :(得分:3)
您可以使用str_replace
:
$str = str_replace(' ', '', $str);
答案 1 :(得分:2)
你也可以这样做
$string = preg_replace('/\s+/', '', $string);
答案 2 :(得分:1)
答案 3 :(得分:0)
完整代码:
$string="Hello World";
$string = str_replace(' ', '', $string);
答案 4 :(得分:0)
试试这个:
function space_trim($st) {
return @str_replace(" ","",$st);
}
echo space_trim(" a fff jjj ");