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

我怎么能 / 所有 一个的 在PHP?

我有一个 像$string = "this is my string";

输出应为 "thisismystring"

我怎样才能做到这一点?

回答:

您是指空格还是所有空格?

对于仅空格,请使用str_replace:

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

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

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

以上是 如何在PHP中从字符串中去除所有空格? 的全部内容, 来源链接: utcz.com/qa/407093.html

回到顶部