Php/docs/pht-queue.size

提供:Dev Guides
< Php
移動先:案内検索

pht\Queue::size

(PECL pht >= 0.0.1)

pht\Queue::sizeGets the size of the queue


説明

public pht\Queue::size ( ) : int

Returns the current size of the queue. This operation requires a pht\Queue's mutex lock to be held if it is being used by multiple threads.


パラメータ

この関数にはパラメータはありません。


返り値

The size of the queue.


例1 Getting a queue's size

<?phpuse pht\Queue;$queue = new Queue();$queue->push(1);$queue->push(1);var_dump($queue->size());

上の例の出力は以下となります。


int(2)