The SplQueue class

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

简介

SplQueue 类通过使用一个双向链表来提供队列的主要功能。

类摘要

class SplQueue extends SplDoublyLinkedList implements Iterator, ArrayAccess, Countable {
/* 方法 */
public __construct()
public dequeue(): mixed
public enqueue(mixed $value): void
public setIteratorMode(int $mode): void
/* 继承的方法 */
public SplDoublyLinkedList::add(int $index, mixed $value): void
public SplDoublyLinkedList::offsetExists(int $index): bool
public SplDoublyLinkedList::offsetSet(?int $index, mixed $value): void
public SplDoublyLinkedList::offsetUnset(int $index): void
public SplDoublyLinkedList::push(mixed $value): void
public SplDoublyLinkedList::unserialize(string $data): void
public SplDoublyLinkedList::unshift(mixed $value): void
}

目录