SeekableIterator::seek
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SeekableIterator::seek — 位置を移動する
パラメータ
offset
-
移動先の位置。
戻り値
値を返しません。
エラー / 例外
offset
に移動できない場合、
OutOfBoundsException をスローするよう実装しなければなりません。
例
例1 SeekableIterator::seek() の例
イテレータの 3 番目の位置に移動します (ArrayIterator は SeekableIterator を実装しています)。
<?php
$array = array("apple", "banana", "cherry", "damson", "elderberry");
$iterator = new ArrayIterator($array);
$iterator->seek(3);
echo $iterator->current();
?>
上の例の出力は、 たとえば以下のようになります。
damson
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google