No sé cual es la fobia a usar XML si con 2 líneas lees el contenido:
Código PHP:
Ver original<?php
$sxe = new SimpleXMLElement('test.xml', null, true);
foreach ($sxe->track as $t) echo "$t->location <br />";
Este aporte te puede ayudar bastante:
http://www.forosdelweb.com/f18/aport...ml-dom-792348/
Saludos.