Files
zhamao-framework/src/Custom/global_function.php

12 lines
284 B
PHP
Raw Normal View History

<?php /** @noinspection PhpFullyQualifiedNameUsageInspection */ #plain
//这里写你的全局函数
/**
* @param callable $func
* @param string $name
* @noinspection PhpUnused
*/
2020-09-29 15:07:43 +08:00
function pgo(callable $func, $name = "default") {
\ZM\Utils\CoroutinePool::go($func, $name);
}