Skip to content

Instantly share code, notes, and snippets.

@sbarrat
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbarrat/10113792 to your computer and use it in GitHub Desktop.
Save sbarrat/10113792 to your computer and use it in GitHub Desktop.
Función para quitar espacios en blanco extras dentro de los textos
<?php
function quitaEspacios($texto)
{
$partes = explode(' ', $texto);
$textoLimpio = "";
foreach ($partes as $parte) {
if (strlen($parte) > 0 || $parte != "") {
$nombreLimpio .= $parte." ";
}
}
return trim($nombreLimpio);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment