Gets an index of iterators

AppendIterator::getIteratorIndex

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

AppendIterator::getIteratorIndexGets an index of iterators

說明

public AppendIterator::getIteratorIndex(): ?int

Gets the index of the current inner iterator.

參數

此函式沒有參數。

返回值

Returns the zero-based, integer index of the current inner iterator if it exists, or null otherwise.

範例

示例 #1 AppendIterator.getIteratorIndex() basic example

<?php
$array_a 
= new ArrayIterator(array('a' => 'aardwolf''b' => 'bear''c' => 'capybara'));
$array_b = new ArrayIterator(array('apple''orange''lemon'));

$iterator = new AppendIterator;
$iterator->append($array_a);
$iterator->append($array_b);

foreach (
$iterator as $key => $current) {
    echo 
$iterator->getIteratorIndex() . '  ' $key ' ' $current PHP_EOL;
}
?>

以上例程會輸出:

0  a aardwolf
0  b bear
0  c capybara
1  0 apple
1  1 orange
1  2 lemon

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *