SplObjectStorage::seek

(PHP 8 >= 8.4.0)

SplObjectStorage::seekSeeks iterator to a position

Açıklama

public SplObjectStorage::seek(int $offset): void

Seeks to a given position in the iterator.

Bağımsız Değişkenler

offset
The position to seek to.

Dönen Değerler

Hiçbir değer dönmez.

Hatalar/İstisnalar

Throws an OutOfBoundsException if the offset is not seekable.

Örnekler

Örnek 1 SplObjectStorage::seek() example

Seeks to item position 2 in the iterator.

<?php
class Test {
public function
__construct(public string $marker) {}
}

$a = new Test("a");
$b = new Test("b");
$c = new Test("c");

$storage = new SplObjectStorage();
$storage[$a] = "first";
$storage[$b] = "second";
$storage[$c] = "third";

$storage->seek(2);
var_dump($storage->key());
var_dump($storage->current());
?>

Yukarıdaki örneğin çıktısı:

int(2)
object(Test)#3 (1) {
  ["marker"]=>
  string(1) "c"
}

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top