我怎么能 剥夺 / 删除 所有 空格 一个的 字符串 在PHP?
我有一个 字符串 像$string = "this is my string";
$string = "this is my string";
输出应为 "thisismystring"
"thisismystring"
我怎样才能做到这一点?
您是指空格还是所有空格?
对于仅空格,请使用str_replace:
$string = str_replace(' ', '', $string);
对于所有空格(包括制表符和行尾),请使用preg_replace:
$string = preg_replace('/\s+/', '', $string);