ArrayIterator::current()函數是PHP中的內置函數,用於返回數組迭代器的當前元素。
用法:
mixed ArrayIterator::current( void )
參數:該函數不接受任何參數。
返回值:此函數返回數組的當前元素。
以下示例程序旨在說明PHP中的ArrayIterator::current()函數:
示例1:
<?php
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
array('G', 'e', 'e', 'k', 's', 'f', 'o', 'r')
);
// Loop to display the element
while($arrItr->valid()) {
echo $arrItr->current();
$arrItr->next();
}
?>
輸出:
Geeksfor
示例2:
<?php
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
array("Geeks", "for", "Geeks")
);
// Loop to display the element
foreach($arrItr as $element) {
echo $arrItr->current() . "\n";
}
?>
輸出:
Geeks for Geeks
參考: https://www.php.net/manual/en/arrayiterator.current.php
相關用法
- PHP ArrayIterator next()用法及代碼示例
- PHP ArrayIterator key()用法及代碼示例
- PHP ArrayIterator ksort()用法及代碼示例
- PHP ArrayIterator append()用法及代碼示例
- PHP ArrayIterator natsort()用法及代碼示例
- PHP ArrayIterator uksort()用法及代碼示例
- PHP ArrayIterator asort()用法及代碼示例
- PHP ArrayIterator setFlags()用法及代碼示例
- PHP ArrayIterator __construct()用法及代碼示例
- PHP ArrayIterator count()用法及代碼示例
- PHP ArrayIterator getArrayCopy()用法及代碼示例
- PHP ArrayIterator getFlags()用法及代碼示例
- PHP ArrayIterator seek()用法及代碼示例
- PHP ArrayIterator serialize()用法及代碼示例
- PHP ArrayIterator seek()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | ArrayIterator current() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。