Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/02/2008, 09:37
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Eliminar blancos de array

Puedes ciclar tu arreglo y verificar, por decir:
Código PHP:
foreach( $array as &$element ) {
       if( empty( 
trim$element ) ) ) {
               unset( 
$element );
       }

Saludos.