Ver Mensaje Individual
  #6 (permalink)  
Antiguo 30/07/2014, 14:57
Avatar de pateketrueke
pateketrueke
Modernizr
 
Fecha de Ingreso: abril-2008
Ubicación: Mexihco-Tenochtitlan
Mensajes: 26.399
Antigüedad: 16 años
Puntos: 2534
Respuesta: acceder a un array multidimencinal conociendo su ruta

¿Ya leíste el manual?

Parece que no lo has hecho, observa:
Código PHP:
Ver original
  1. // MAL
  2. $_this_question = $_this_question[$index[$i]];
  3. unset($_this_question);
  4.  
  5. // BIEN
  6. // esta linea es innecesaria, si $index[$i] contiene la posición a eliminar
  7. // $_this_question = $_this_question[$index[$i]];
  8.  
  9. unset($_this_question[$index[$i]]);
__________________
Y U NO RTFM? щ(ºдºщ)

No atiendo por MP nada que no sea personal.