Tengo esta estructura de array:
Código PHP:
Ver original(
(
(
[id] => 6
[nombre] => Recibidas
[tipo] => Car1
[id_owner] => 0
)
)
(
(
[id] => 5
[nombre] => Cartas
[tipo] => Car1
[id_owner] => 0
)
)
(
(
[id] => 2
[nombre] => Facturas
[tipo] => Car1
[id_owner] => 0
)
)
(
)
(
)
(
(
[id] => 3
[nombre] => Correspondencia
[tipo] => Car1
[id_owner] => 0
)
(
[id] => 4
[nombre] => Ventas
[tipo] => Car1
[id_owner] => 0
)
(
[id] => 3
[nombre] => Correspondenciawww
[tipo] => Doc0
[id_owner] => 0
)
)
)
Cuando trato de acceder a el con esto: $lista['Car1'][0]['id']
me muestra el siguiente error:
Undefined index: Car6
A que se debe esto?