さて、私はこれについて少し混乱しています。私は次のようなxmlを持っています:
<track>
<artist mbid="77cceea7-91bb-4a4c-ae41-bc9c46c1ccb5"> Red Hot Chili Peppers </artist>
<name> under the bridge </name>
<streamable>0</streamable>
<mbid/>
<album mbid="0fe94139-df63-4e51-b2e7-a1d53535cdd9"> Blood Sugar Sex Magik </album>
<url> http://xxxxxx.com </url>
<date uts="1351691244">31 Oct 2012, 13:47</date>
</track>
そして、simpleXMLを使用して次のようにxmlを解析します。
$artists = array();
$xml = simplexml_load_file("http://xxxxxxxxxxxxxx");
foreach($xml->recenttracks->track as $track)
{
$artist = $track->artist;
array_push($artists, $artist);
}
var_dump($artists);
今、私は次のような素敵な配列を取得したいと思っていました。
array(4) {
[0]=>
string(20) "Red Hot Chili Peppers "
[1]=>
string(20) "Red Hot Chili Peppers"
}
しかし、私が得ているのは次のようなものです。
array(2)
{
[0]=> object(SimpleXMLElement)#6 (2) { ["@attributes"]=> array(1) { ["mbid"]=> string(36) "8bfac288-ccc5-448d-9573-c33ea2aa5c30" } [0]=> string(21) "Red Hot Chili Peppers" }
[1]=> object(SimpleXMLElement)#4 (2) { ["@attributes"]=> array(1) { ["mbid"]=> string(36) "8bfac288-ccc5-448d-9573-c33ea2aa5c30" } [0]=> string(21) "Red Hot Chili Peppers" }
}
わかりにくいので、SimpleXMLElement全体ではなく、アーティストのみを取得するにはどうすればよいですか。