Интерфейс SeekableIterator

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

Введение

Итератор Seekable.

Обзор интерфейса

interface SeekableIterator extends Iterator {
/* Методы */
public function seek(int $offset): void
/* Наследуемые методы */
public function Iterator::current(): mixed
public function Iterator::key(): mixed
public function Iterator::next(): void
public function Iterator::rewind(): void
public function Iterator::valid(): bool
}

Примеры

Пример #1 Простое использование

Этот пример показывает как создаётся пользовательский итератор SeekableIterator, который ищет и обрабатывает недопустимую позицию.

<?php

class MySeekableIterator implements SeekableIterator
{
    private $position;

    private $array = array(
        "первый элемент",
        "второй элемент",
        "третий элемент",
        "четвёртый элемент"
    );

    /* Метод, который требует интерфейс SeekableIterator */

    public function seek($position)
    {
      if (!isset($this->array[$position])) {
          throw new OutOfBoundsException("Недопустимая позиция ($position)");
      }

      $this->position = $position;
    }

    /*  Методы, которые требует интерфейс Iterator */

    public function rewind()
    {
        $this->position = 0;
    }

    public function current()
    {
        return $this->array[$this->position];
    }

    public function key()
    {
        return $this->position;
    }

    public function next()
    {
        ++$this->position;
    }

    public function valid()
    {
        return isset($this->array[$this->position]);
    }
}

try {
    $it = new MySeekableIterator();
    echo $it->current(), "\n";

    $it->seek(2);
    echo $it->current(), "\n";

    $it->seek(1);
    echo $it->current(), "\n";

    $it->seek(10);
} catch (OutOfBoundsException $e) {
    echo $e->getMessage();
}

?>

Вывод приведённого примера будет похож на:

первый элемент
третий элемент
второй элемент
Недопустимая позиция (10)

Содержание

  • SeekableIterator::seek — Сдвигает указатель итератора на заданную позицию
Добавить

Примечания пользователей 4 notes

up
8
svenr at selfhtml dot org
14 years ago
Best method:

<?php

if ($object instanceof SeekableIterator) {
  echo "\$object has method seek()";
}

?>

Please, make use of checking if a particular interface has been implemented to assure that the object you are dealing with definately has the methods you are about to use.

This also works as typehinting:

<?php

class foo {
  public function doSomeSeeking(SeekableIterator $seekMe) {
    $seekMe->seek(10); // will work, otherwise Typehint triggers complaints
  }
}

?>
up
0
info at ensostudio dot ru
3 years ago
Note: $offset parameter of SeekableIterator::seek()  is position in list, not array key.
<?php
$iterator = new ArrayIterator([1 => "apple", 2 => "banana", 3 => "cherry"]);
echo $iterator->offsetGet(2); // banana
$iterator->seek(2);
echo $iterator->current(); // cherry
?>
up
-1
info at ensostudio dot ru
5 years ago
Note: use array_key_exists instead isset!
<?php
public function seek($position)
{
    $position = (int) $position;
    if (! array_key_exists($position, array_values($this->array))) {
        throw new OutOfBoundsException('Invalid position to seek: ' . $position);
    }
    $this->position = $position;
}
?>
up
-2
Anonymous
12 years ago
The code above is missing a closing parenthesis.

<?php
if (!isset($this->array[$position]) {
          throw new OutOfBoundsException("invalid seek position ($position)");
}
?>

should be

<?php
if (!isset($this->array[$position])) { // close here
          throw new OutOfBoundsException("invalid seek position ($position)");
}
?>
To Top