我有以下字符串,我想从多个空格中“清除”:
$string = "This is a test string"; //Using utf8_decode
没什么大不了的吧?但是,字符串在使用后没有“清理”:
$string = preg_replace('/\s+/', ' ', $string);
因为,字符串实际上是这样的:
$test = "This is a  test string";
那么,我该如何解决这个问题呢?
谢谢。
拜托,我不想替换 Â 字符之类的str_replace('Â', '')
东西