Ver Mensaje Individual
  #7 (permalink)  
Antiguo 03/02/2009, 20:26
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 9 meses
Puntos: 2135
Respuesta: arrays asociativos

De hecho si solo quieres aplicar trim() porque no usas array_walk?

Código php:
Ver original
  1. function quitar_espacios($array) {
  2.         array_walk($array, 'trim');
  3.         return $this->Campos=$array;
  4. }

Saludos