我有一个来自XML文件的XML行:
<issue>
<host ip="10.10.5.6">http://www.testing.com</host>
很明显,我可以像这样阅读主持人(http://www.testing.com):
$simple = file_get_contents('/directory/test1.xml');
$test = new SimpleXMLElement($simple);
echo $test ->issue[1]->host;
但我怎样才能读取主机ip(10.10.5.6)?
感谢您的帮助!
解决方案:echo $ test - &gt; issue [1] - &gt; host [ip];