我正在读的XML看起来像这样:
The Big Bang Theory
http://www.tvrage.com/The_Big_Bang_Theory
2007-09-24
USA
05x23
The Launch Acceleration得到(例如)我会做的最新剧集的数量:
$ep = $xml->latestepisode[0]->number;
这工作很好。但是,如果从< show id =“8511”>获取ID,该怎么办? ?
我已经尝试过像:
$id = $xml->show;
$id = $xml->show[0];
但没有一个工作。
更新
我的代码段:
$url = "http://services.tvrage.com/feeds/episodeinfo.php?show=".$showName;
$result = file_get_contents($url);
$xml = new SimpleXMLElement($result);
//still doesnt work
$id = $xml->show->attributes()->id;
$ep = $xml->latestepisode[0]->number;
echo ($id);
大利。 XML:
http://services.tvrage.com/feeds/episodeinfo.php?show=The.Big.Bang.Theory