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


PHP AppendIterator next()用法及代码示例


AppendIterator::next()函数是PHP中的内置函数,用于将元素移至下一个元素。

用法:

void AppendIterator::next( void )

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


返回值:该函数不返回任何值。

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

示例1:

<?php 
   
// Declare an ArrayIterator 
$arr1 = new ArrayIterator(array('G', 'e', 'e', 'k', 's')); 
   
// Create a new AppendIterator 
$itr = new AppendIterator; 
   
// Append the ArrayIterator element 
$itr->append($arr1); 
   
// Display the current element of iterator 
var_dump($itr->current()); 
   
// Use AppendIterator::next() function to 
// move into next element 
$itr->next(); 
   
// Display the current element of iterator 
var_dump($itr->current()); 
   
?>
输出:
string(1) "G"
string(1) "e"

示例2:

<?php 
   
// Declare an ArrayIterator 
$arr1 = new ArrayIterator( 
    array( 
        "a" => "Geeks", 
        "b" => "for", 
        "c" => "Geeks"
    ) 
); 
   
$arr2 = new ArrayIterator( 
    array( 
        "x" => "Computer", 
        "y" => "Science", 
        "z" => "Portal"
    ) 
); 
   
// Create a new AppendIterator 
$itr = new AppendIterator; 
$itr->append($arr1); 
$itr->append($arr2); 
   
$itr->rewind(); 
   
while ($itr->valid()) { 
    echo "ArrayIterator Key: " . $itr->key() . 
    "  ArrayIterator Value: " . $itr->current() . "\n"; 
       
    $itr->next(); 
} 
   
?>
输出:
ArrayIterator Key: a  ArrayIterator Value: Geeks
ArrayIterator Key: b  ArrayIterator Value: for
ArrayIterator Key: c  ArrayIterator Value: Geeks
ArrayIterator Key: x  ArrayIterator Value: Computer
ArrayIterator Key: y  ArrayIterator Value: Science
ArrayIterator Key: z  ArrayIterator Value: Portal

参考: https://www.php.net/manual/en/appenditerator.next.php



相关用法


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