AppendIterator::current()函數是PHP中的內置函數,用於獲取當前值。
用法:
mixed AppendIterator::current( void )
參數:該函數不接受任何參數。
返回值:如果有效,此函數將返回當前值,否則返回NULL。
以下示例程序旨在說明PHP中的AppendIterator::current()函數:
示例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("Geeks", "for", "Geeks"));
$arr2 = new ArrayIterator(array("Computer", "Science", "Portal"));
// Create a new AppendIterator
$itr = new AppendIterator;
$itr->append($arr1);
$itr->append($arr2);
foreach ($itr as $key => $val) {
var_dump($itr->current());
}
?>
輸出:
string(5) "Geeks" string(3) "for" string(5) "Geeks" string(8) "Computer" string(7) "Science" string(6) "Portal"
參考: https://www.php.net/manual/en/appenditerator.current.php
相關用法
- PHP AppendIterator key()用法及代碼示例
- PHP AppendIterator next()用法及代碼示例
- PHP AppendIterator getIteratorIndex()用法及代碼示例
- PHP AppendIterator __construct()用法及代碼示例
- PHP AppendIterator append()用法及代碼示例
- PHP AppendIterator rewind()用法及代碼示例
- PHP AppendIterator valid()用法及代碼示例
- PHP current()用法及代碼示例
- PHP ArrayIterator current()用法及代碼示例
- PHP Imagick current()用法及代碼示例
- PHP SplHeap current()用法及代碼示例
- PHP SplFileObject current( )用法及代碼示例
- PHP FilesystemIterator current()用法及代碼示例
- PHP Gmagick current()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | AppendIterator current() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。