Итак, если у меня есть строка вроде
"hello what is my name"
Как я могу взять все пробелы и заменить их только одним пробелом?
Это должно сделать это:
$replaced = preg_replace('/\s\s+/', ' ', $text);
Вывод:
hello what is my name
Найдено решение:
<?php $str = ' This is a test '; $count = 1; while($count) $str = str_replace(' ', ' ', $str, $count); ?>
в<?php $str = ' This is a test '; $count = 1; while($count) $str = str_replace(' ', ' ', $str, $count); ?>