Swoole\Coroutine::call_user_func_array

(PECL swoole >= 2.0.0)

Swoole\Coroutine::call_user_func_arrayCall a callback with an array of parameters

Description

publicstaticSwoole\Coroutine::call_user_func_array(callable$callback, array$param_array): mixed

Calls the callback given by the first parameter with the parameters in param_array.

Parameters

callback

The callable to be called.

param_array

Zero or more parameters in the array to be passed to the callback.

Return Values

To Top