pht\Queue::pushPushes a value to the end of a queue 説明
public void pht\Queue::push
( mixed
$value
)This method will add a value onto the queue. パラメータ
戻り値No return value. 例
例1 Pushing a value to a queue
<?php上の例の出力は以下となります。
object(pht\Queue)#1 (1) {
[0]=>
int(1)
}
|