Join 4,000+ others and never miss out on new tips, tutorials, and more.
4.x is outdated, please check the latest version 22.x
Latest version:
pecl install openswoole-22.1.2
<?php Swoole\Coroutine\Channel->isEmpty(): bool
Returns true
if the channel is empty, false
otherwise.
Determine whether the current channel is empty.
<?php
Co\run(function() {
$data = 'Hello World!';
$chan = new chan(1);
$chan->push($data);
$pop = $chan->pop();
var_dump($chan->isEmpty());
});