ArrayDeque::unshift

(Available since version 1.0)

ArrayDeque::unshiftPrepends the array with an element

Description

public void ArrayDeque::unshift ( mixed $value )

Prepends value at the beginning of the array.

Parameters

value

The value to unshift.

Return Values

No value is returned.

To Top