/ Published in: PHP
Remove excess whitespaces from string
Remove espaços em branco em excesso de uma string
Remove espaços em branco em excesso de uma string
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function stripExcessSpaces($str) { } // ex.: $string = 'String with too many whitespaces.'; echo '<pre>'.$string." ".stripExcessSpaces($string).'</pre>';