我有一个这种格式的 XML 文件
"note.xml"
<currencies>
<currency name="US dollar" code_alpha="USD" code_numeric="840" />
<currency name="Euro" code_alpha="EUR" code_numeric="978" />
</currencies>
PHP代码
$xml=simplexml_load_file("note.xml");
echo $xml->name. "<br>"; --no output
echo $xml->code_alpha. "<br>"; --no output
echo $xml->code_numeric . "<br>"; --no output
print_r($xml);
print_r($xml)-->SimpleXMLElement Object ([currency] => SimpleXMLElement Object ([@attributes] => Array ([name] => US Dollar [code_alpha] => USD [code_numeric] => 840)) 的输出
我没有得到任何 ECHO 语句的输出,我尝试了“simplexml_load_file”并尝试从中读取,但它不起作用。请告诉我应该使用什么 php 代码从这种格式的 XML 文件中读取。