php怎么去除字符串中的空格

avatar
作者
筋斗云
阅读量:0

在PHP中,可以使用str_replace函数或者preg_replace函数来去除字符串中的空格。

使用str_replace函数:

$str = "Hello World"; $str = str_replace(' ', '', $str); echo $str; // 输出:HelloWorld 

使用preg_replace函数:

$str = "Hello World"; $str = preg_replace('/s+/', '', $str); echo $str; // 输出:HelloWorld 

以上两种方法都可以去除字符串中的所有空格。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!