在PHP中,我如何读取XML行的子值?

时间:2015-07-28 21:15:23

标签: php xml

我有一个来自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];

0 个答案:

没有答案