Join 2,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-4.11.1
<?php Swoole\Coroutine\Channel->getId(): int
Returns an integer ID of the channel.
Gets the integer ID of the channel.
<?php
Co\run(function() {
$data = 'Hello World!';
$chan = new chan(1);
$chan->push($data);
$pop = $chan->pop();
var_dump($chan->getId());
});