call_user_func_array

Supported Versions: PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8
Call a callback with an array of parameters
<?php call_user_func_array(callable $callback, array $args): mixed
<?php         [$filter_function, $filter_arguments] = $this->getFunctionAndArguments($filter);

        if ($filter_arguments) {

            array_unshift($filter_arguments, $arguments);

            return call_user_func_array($filter_function, $filter_arguments);

        }

        return $filter_function($arguments);

    }