小编典典

如何在 PHP 中去除字符串中的所有空格?

all

如何在 PHP中 剥离* / 删除 字符串 的所有 空格? *

我有一个 字符串$string = "this is my string";

输出应该是 "thisismystring"

我怎样才能做到这一点?


阅读 125

收藏
2022-03-03

共1个答案

小编典典

你的意思是空格还是所有空格?

对于空格,请使用str_replace

$string = str_replace(' ', '', $string);

对于所有空格(包括制表符和行尾),使用preg_replace

$string = preg_replace('/\s+/', '', $string);
2022-03-03