重複の可能性:
xml ファイルのノードとノードの値を CRUD する単純なプログラム
XPath と PHP: 何も正しく動作しない
$XML = <<<XML
<items>
<item id="123">
<name>Item 1</name>
</item>
<item id="456">
<name>Item 2</name>
</item>
<item id="789">
<name>Item 3</name>
</item>
</items>
XML;
$objSimpleXML = new SimpleXMLElement($XML);
echo $objSimpleXML->item[2]->name; // output: Item 3 (OK)
echo '<br><pre>';
print_r($objSimpleXML->xpath('./item[1]/name')); // output: empty Array!!!
こんにちは!純粋なxpathクエリを使用して「アイテム3」を出力として取得するには? (私の提案は空の配列を出力します。)