$oa=new DOMDocument();$oa->load("o.xml");
$a=$oa->getElementsByTagName("am")->item(0);
foreach($a->attributes() as $x=>$y) {
echo $x; echo $y;
}
XML で指定したノードを読み込みたい属性の名前と値、
エラーが発生した理由
致命的なエラー: 未定義のメソッド DOMElement::attributes() の呼び出し
DOMElement ::getAttribute
SimpleXMLElement::attributes
2 つの異なるシステム、混同しないでください
次のようなものがありますが、
dom_import_simplexml
simplexml_import_dom
は 2 つのシステム間で変換できます
ただし、使用する前にまず変換する必要があります