Swoole\Coroutine\Channel->getId()

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


Latest version: pecl install openswoole-22.1.2

Declaration

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

Parameters

None

Return

Returns an integer ID of the channel.

Swoole Coroutine Channel ID

Description

Gets the integer ID of the channel.

Example

<?php
Co\run(function() {

    $data = 'Hello World!';

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

    var_dump($chan->getId());

});
Last updated on August 31, 2022