OpenSwoole\Coroutine\Channel->length()

Latest version: pecl install openswoole-22.1.2 | composer require openswoole/core:22.1.5

Declaration

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

Parameters

None

Return

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

OpenSwoole 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 September 1, 2022