mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-21 15:45:36 +08:00
7 lines
136 B
PHP
7 lines
136 B
PHP
<?php
|
|
|
|
//这里写你的全局函数
|
|
function pgo(callable $func, $name = "default") {
|
|
\ZM\Utils\CoroutinePool::go($func, $name);
|
|
}
|