SimpleXMLIterator::current
SimpleXMLIterator::current
(PHP 5 >= 5.1.0, PHP 7)
SimpleXMLIterator :: current - 返回当前元素
描述
public mixed SimpleXMLIterator::current ( void )
此方法将当前元素作为SimpleXMLIterator对象返回NULL
。
参数
该功能没有参数。
返回值
将当前元素作为SimpleXMLIterator对象返回或失败时返回NULL
。
例子
示例#1 返回当前元素
<?php
$xmlIterator = new SimpleXMLIterator('<books><book>PHP basics</book><book>XML basics</book></books>'
var_dump($xmlIterator->current()
$xmlIterator->rewind( // rewind to first element
var_dump($xmlIterator->current()
?>
上面的例子将输出:
NULL
object(SimpleXMLIterator)#2 (1) {
[0]=>
string(10) "PHP basics"
}
扩展内容
- SimpleXMLIterator :: key() - 返回当前键
- SimpleXMLIterator :: next() - 移至下一个元素
- SimpleXMLIterator :: rewind() - 倒回到第一个元素
- SimpleXMLIterator :: valid() - 检查当前元素是否有效
- SimpleXMLElement
← SimpleXMLIterator
SimpleXMLIterator::getChildren →