Ds\Deque::push

(PECL ds >= 1.0.0)

Ds\Deque::pushAdds values to the end of the deque

Opis

public Ds\Deque::push ([ mixed $...values ] ) : void

Adds values to the end of the deque.

Parametry

values

The values to add.

Zwracane wartości

Nie jest zwracana żadna wartość.

Przykłady

Przykład #1 Ds\Deque::push() example

<?php
$deque 
= new \Ds\Deque();

$deque->push("a");
$deque->push("b");
$deque->push("c""d");
$deque->push(...["e""f"]);

print_r($deque);
?>

Powyższy przykład wyświetli coś podobnego do:

Ds\Deque Object
(
    [0] => a
    [1] => b
    [2] => c
    [3] => d
    [4] => e
    [5] => f
)
add a note add a note

User Contributed Notes

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