倒回到第一个元素,然后使用 current() 函数返回它:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml = new SimpleXMLIterator($note);
// rewind to the first element
$xml->rewind();
// return current element
var_dump($xml->current());
?>
运行示例 »
current() 函数返回当前元素。
SimpleXMLIterator::current()
返回值: | 成功时返回当前元素(作为 SimpleXMLIterator 对象)。失败时为 NULL |
---|---|
PHP 版本: | 5.0+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!