我正在尝试使用PHP和simpleXML解析一个shoutcast XML url。
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
$url = 'http://api.shoutcast.com/legacy/stationsearch?k=mydeveloperAPIkey&search=fleetwood';
$stationlist = simplexml_load_file($url) or die("feed not loading");
echo "<pre>" . print_r($stationlist) . "</pre>";
echo $stationlist->station[0]->name . "name <br>";
echo $stationlist->station[0]->mt . "mt <br>";
echo $stationlist->station[0]->id . "id <br>";
?>
print_r向我显示了这个:http://sahanaya.net/kusal/1.php
我如何访问电台名称,mt,id,流派,ct,lc和其他名称?我在做什么错了?