The SplQueue class

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

Einführung

The SplQueue class provides the main functionalities of a queue implemented using a doubly linked list by setting the iterator mode to SplDoublyLinkedList::IT_MODE_FIFO.

Klassenbeschreibung

class SplQueue extends SplDoublyLinkedList {
/* Geerbte Konstanten */
/* Methoden */
public function dequeue(): mixed
public function enqueue(mixed $value): void
/* Geerbte Methoden */
public function SplDoublyLinkedList::add(int $index, mixed $value): void
public function SplDoublyLinkedList::count(): int
public function SplDoublyLinkedList::key(): int
public function SplDoublyLinkedList::next(): void
public function SplDoublyLinkedList::offsetExists(int $index): bool
public function SplDoublyLinkedList::offsetGet(int $index): mixed
public function SplDoublyLinkedList::offsetSet(?int $index, mixed $value): void
public function SplDoublyLinkedList::offsetUnset(int $index): void
public function SplDoublyLinkedList::pop(): mixed
public function SplDoublyLinkedList::prev(): void
public function SplDoublyLinkedList::push(mixed $value): void
public function SplDoublyLinkedList::top(): mixed
public function SplDoublyLinkedList::unshift(mixed $value): void
public function SplDoublyLinkedList::valid(): bool
}

Beispiele

Beispiel #1 SplQueue example

<?php
$q
= new SplQueue();
$q[] = 1;
$q[] = 2;
$q[] = 3;
foreach (
$q as $elem) {
echo
$elem."\n";
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

1
2
3

Beispiel #2 Efficiently handling tasks with SplQueue

<?php
$q
= new SplQueue();
$q->setIteratorMode(SplQueue::IT_MODE_DELETE);
// ... enqueue some tasks on the queue ...
// process them
foreach ($q as $task) {
// ... process $task ...
// add new tasks on the queue
$q[] = $newTask;
// ...
}
?>

Inhaltsverzeichnis