摘要: 添加配置(author) config/config.php <?php declare(strict_types=1); use Hyperf\Contract\StdoutLoggerInterface; use Psr\Log\LogLevel; return [ 'app_name' => 阅读全文
posted @ 2021-09-07 01:52 胡勇健 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 协程是一种轻量级的线程,由用户代码来调度和管理,而不是由操作系统内核来进行调度,也就是在用户态进行 创建协程方法 co函数 public function test(){ echo "first id: ". Coroutine::id().PHP_EOL; co(function () { ech 阅读全文
posted @ 2021-09-07 00:39 胡勇健 阅读(2138) 评论(0) 推荐(0) 编辑