Bueno... Esta parte la resolví efectivamente con un foreach simple.
Código PHP:
Ver original$evento = $registers[$i]["children"]["C1C_Mobile_c1c_mobile:eventos"];
$id = $evento[0]["attributes"]["gml:id"];
foreach ($evento[0]["children"] as $clave => $valor)
{
print $valor[0]["text"]."<br/>";
}
El problema me lo consigo en un array de nivel inferior..
Código PHP:
Ver original["C1C_Mobile_c1c_mobile:shape"]=> array(1) {
{
["name"]=> string(5) "shape"
["text"]=> NULL
["attributes"]=> array(0) { } {
{
{
["name"]=> string(5) "point"
"text"]=> NULL ["attributes"]=> array(0) { } {
{
{
["name"]=> string(3) "pos"
["text"]=> string(38) "10.495218384609036 -66.899088900162212"
["attributes"]=> array(0) { } ["children"]=> array(0) { } }
}
}
}
}
}
}
}
Que de verdad no se como entrarle... Saludos!