str_replace(' ', '', $string); str_replace(' ', '', $string); str_replace(' ', '', $string);
How can I replace more than two spaces with one code for nothing ('')?
trim () does not offer, this is not it.
str_replace(' ', '', $string); str_replace(' ', '', $string); str_replace(' ', '', $string);
How can I replace more than two spaces with one code for nothing ('')?
trim () does not offer, this is not it.
Source: https://ru.stackoverflow.com/questions/192889/
All Articles