Swoole\Coroutine\Channel->length()

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Coroutine\Channel->length(): int

Parameters

None

Return

Returns an integer of how many items are currently in the channel.

Swoole Coroutine Channel Length

Description

Gets the length of queue in the Channel.

Example

<?php
Co\run(function() {

    $data = 'Hello World!';

    $chan = new chan(1);
    $chan->push($data);
    $pop = $chan->pop();

    var_dump($chan->length());

});
Last updated on August 31, 2022