ArrayIterator::valid()函數是PHP中的內置函數,用於檢查數組是否包含更多條目。
用法:
bool ArrayIterator::valid( void )
參數:該函數不接受任何參數。
返回值:如果迭代器有效,則此函數返回TRUE,否則返回FALSE。
以下示例程序旨在說明PHP中的ArrayIterator::valid()函數:
示例1:
<?php
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
array('G', 'e', 'e', 'k', 's')
);
while ($arrItr->valid()) {
echo "ArrayIterator Key: " . $arrItr->key() .
" ArrayIterator Value: " . $arrItr->current() . "\n";
$arrItr->next();
}
?>
輸出:
ArrayIterator Key: 0 ArrayIterator Value: G ArrayIterator Key: 1 ArrayIterator Value: e ArrayIterator Key: 2 ArrayIterator Value: e ArrayIterator Key: 3 ArrayIterator Value: k ArrayIterator Key: 4 ArrayIterator Value: s
示例2:
<?php
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
array(
"a" => "Geeks",
"b" => "for",
"c" => "Geeks"
)
);
// Using rewind function
$arrItr->rewind();
while($arrItr->valid()) {
var_dump($arrItr->current());
// Moving to next element
$arrItr->next();
}
?>
輸出:
string(5) "Geeks" string(3) "for" string(5) "Geeks"
參考: https://www.php.net/manual/en/arrayiterator.valid.php
相關用法
- PHP ArrayIterator key()用法及代碼示例
- PHP ArrayIterator next()用法及代碼示例
- PHP ArrayIterator asort()用法及代碼示例
- PHP ArrayIterator offsetSet()用法及代碼示例
- PHP ArrayIterator __construct()用法及代碼示例
- PHP ArrayIterator unserialize()用法及代碼示例
- PHP ArrayIterator count()用法及代碼示例
- PHP ArrayIterator rewind()用法及代碼示例
- PHP ArrayIterator offsetGet()用法及代碼示例
- PHP ArrayIterator append()用法及代碼示例
- PHP ArrayIterator serialize()用法及代碼示例
- PHP ArrayIterator uasort()用法及代碼示例
- PHP ArrayIterator offsetExists()用法及代碼示例
- PHP ArrayIterator offsetUnset()用法及代碼示例
- PHP ArrayIterator uksort()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | ArrayIterator valid() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。