SimpleXMLIterator::current()函数是PHP中的一个内置函数,用于将当前元素作为SimpleXMLIterator对象或NULL返回。
用法:
mixed SimpleXMLIterator::current( void )
参数:该函数不接受任何参数。
返回值:如果成功,此函数将当前元素作为SimpleXMLIterator对象返回;如果失败,则将其返回NULL。
以下示例程序旨在说明PHP中的SimpleXMLIterator::current()函数:
示例1:
// Create new SimpleXMLIterator object
$xmlIt = new SimpleXMLIterator(
'
GeeksforGeeks
Noida Indiaabc@geeksforgeeks.org
'
);
// Display the current string
var_dump($xmlIt->current());
// Use rewind() function to first element
$xmlIt->rewind();
// Display the current string
var_dump($xmlIt->current());
?>
输出:
NULL
object(SimpleXMLIterator)#2 (1) {
[0]=>
string(13) "GeeksforGeeks"
}
示例2:
// Create new SimpleXMLIterator object
$xmlIt = new SimpleXMLIterator(
'
GeeksforGeeks
Noida Indiaabc@geeksforgeeks.org
'
);
// Use rewind() function to first element
$xmlIt->rewind();
// Use next() function to get
// the next element
$xmlIt->next();
// Display the current string
var_dump($xmlIt->current());
?>
输出:
object(SimpleXMLIterator)#2 (1) {
[0]=>
string(11) "Noida India"
}