Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/05/2012, 13:30
GROGUI2
 
Fecha de Ingreso: agosto-2010
Mensajes: 128
Antigüedad: 13 años, 8 meses
Puntos: 2
Respuesta: Eliminar dato en un array de arrays.

Me auto-contesto por si a alguien le fuera de utilidad:
Código PHP:
            foreach($this->items as $place=>$folders)
            {
                
$key array_search($id$folders TRUE);
                if(!(
$key === false))  
                {
                    unset(
$this->items[$place][$key]);
                    return 
true;
            }