当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP SimpleXMLIterator current()用法及代码示例


SimpleXMLIterator::current()函数是PHP中的一个内置函数,用于将当前元素作为SimpleXMLIterator对象或NULL返回。

用法:

mixed SimpleXMLIterator::current( void )

参数:该函数不接受任何参数。


返回值:如果成功,此函数将当前元素作为SimpleXMLIterator对象返回;如果失败,则将其返回NULL。

以下示例程序旨在说明PHP中的SimpleXMLIterator::current()函数:

示例1:

<?php 
  
// Create new SimpleXMLIterator object 
$xmlIt = new SimpleXMLIterator( 
    '<organization> 
        <name>GeeksforGeeks</name> 
        <address>Noida India</address> 
        <email>abc@geeksforgeeks.org</email> 
    </organization>' 
); 
  
// 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:

<?php 
  
// Create new SimpleXMLIterator object 
$xmlIt = new SimpleXMLIterator( 
    '<organization> 
        <name>GeeksforGeeks</name> 
        <address>Noida India</address> 
        <email>abc@geeksforgeeks.org</email> 
    </organization>' 
); 
  
  
// 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"
}

参考: https://www.php.net/manual/en/simplexmliterator.current.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | SimpleXMLIterator current() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。