Ds\Queue::clear

(PECL ds >= 1.0.0)

Ds\Queue::clearRemoves all values

Opis

public Ds\Queue::clear ( void ) : void

Removes all values from the queue.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Nie jest zwracana żadna wartość.

Przykłady

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

<?php
$queue 
= new \Ds\Queue([123]);
print_r($queue);

$queue->clear();
print_r($queue);
?>

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

Ds\Queue Object
(
    [0] => 1
    [1] => 2
    [2] => 3
)
Ds\Queue Object
(
)
add a note add a note

User Contributed Notes

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