Posts by Wanderley medico • 1 point
1 post
-
-2
votes3
answers13362
viewsA: How to remove whitespace from a text?
function getCdEspacosRetirar($valor){ $array = explode(" ", $valor); $valor = ''; for ($i = 0; $i <= count($array); $i++) { $valor .= ($array[$i])? $array[$i].' ':'';} return trim($valor);}…