ノードとその他の情報を含む単純なxmlファイルがあります。そして、シリーズノードからインデックスを引き出したいです。
XML:
<record>
<id>5055</id>
<uuid>83885ffc-93d8-41ba-aee2-e5c0ae48fc68</uuid>
<publisher>Now Comics</publisher>
<size>5803436</size>
<title sort="Terminator - The Burning Earth 5, The">The Terminator - The Burning Earth 5</title>
<authors sort="Unknown">
<author>Unknown</author>
</authors>
<timestamp>2012-05-13T19:38:03-07:00</timestamp>
<pubdate>2012-05-13T19:38:03-07:00</pubdate>
<series index="5.0">The Terminator: The Burning Earth</series>
<cover>M:/Comics/Unknown/The Terminator - The Burning Earth 5 (5055)/cover.jpg</cover>
<formats>
<format>M:/Comics/Unknown/The Terminator - The Burning Earth 5 (5055)/The Terminator - The Burning Earth 5 - Unknown.cbr</format>
</formats>
</record>
PHP:
$dom = new DOMDocument();
$dom->load($loc);
foreach ($dom->getElementsByTagName('record') as $e) {
$publisher = $e->getElementsByTagName('publisher')->item(0)->textContent;
$arc = $e->getElementsByTagName('series')->item(0)->textContent;
$uuid = $e->getElementsByTagName('uuid')->item(0)->textContent;
}
<series index="5.0">The Terminator: The Burning Earth</series>
今私はそれを引き出したいのxmlファイルでindex="5.0"