Swoole\Coroutine::call_user_func
PHP function
Edit on GitHub ✎
(PECL swoole >= 2.0.0)
Call a callback given by the first parameter
Description
Swoole\Coroutine::call_user_func(callable $callback, mixed ...$args): mixed
Calls the callback given by the first parameter and passes the remaining parameters as arguments.
Parameters
callbackThe
callableto be called.argsZero or more parameters to be passed to the callback.