Ds\Queue::push

(PECL ds >= 1.0.0)

Ds\Queue::pushPushes values into the queue

Opis

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

Pushes values into the queue.

Parametry

values

The values to push into the queue.

Zwracane wartości

Nie jest zwracana żadna wartość.

Przykłady

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

<?php
$queue 
= new \Ds\Queue();

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

print_r($queue);
?>

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

Ds\Queue 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