Ds\Queue::push
(PECL ds >= 1.0.0)
Ds\Queue::push — Pushes values into the queue
パラメータ
values
-
The values to push into the queue.
戻り値
値を返しません。
例
例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);
?>
上の例の出力は、 たとえば以下のようになります。
Ds\Queue Object ( [0] => a [1] => b [2] => c [3] => d [4] => e [5] => f )
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google