PHP 7.0.6 Released

SplQueue::enqueue

(PHP 5 >= 5.3.0, PHP 7)

SplQueue::enqueueAdds an element to the queue.

Description

void SplQueue::enqueue ( mixed $value )

Enqueues value at the end of the queue.

Note:

SplQueue::enqueue() is an alias of SplDoublyLinkedList::push().

Parameters

value

The value to enqueue.

Return Values

No value is returned.

User Contributed Notes

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