mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-04 07:15:36 +08:00
12 lines
284 B
PHP
12 lines
284 B
PHP
<?php /** @noinspection PhpFullyQualifiedNameUsageInspection */ #plain
|
|
|
|
//这里写你的全局函数
|
|
/**
|
|
* @param callable $func
|
|
* @param string $name
|
|
* @noinspection PhpUnused
|
|
*/
|
|
function pgo(callable $func, $name = "default") {
|
|
\ZM\Utils\CoroutinePool::go($func, $name);
|
|
}
|