forward_static_call_array

 mixed forward_static_call_array ( callback $function , array $parameters ) 

説明

Calls a user defined function or method given by the function parameter. This function must be called within a method context, it can't be used outside a class. It uses the late static binding. All arguments of the forwarded method are passed as values, and as an array, similarly to call_user_func_array().

戻り値

Returns the function result, or FALSE on error.