标签:UNC index and cti code 传递 color nbsp col
swoole 协程通道 为了协程直接互相通讯传递数据
和go的通道很相似
Co\run(function(){ $chan = new Swoole\Coroutine\Channel(1); Swoole\Coroutine::create(function () use ($chan) { for($i = 0; $i < 100000; $i++) { co::sleep(1.0); $chan->push([‘rand‘ => rand(1000, 9999), ‘index‘ => $i]); echo "$i\n"; } }); Swoole\Coroutine::create(function () use ($chan) { while(1) { $data = $chan->pop(); var_dump($data); } }); });
标签:UNC index and cti code 传递 color nbsp col
原文地址:https://www.cnblogs.com/brady-wang/p/13341678.html