forward_static_call

Example

 mixed forward_static_call ( callback $function [, mixed $parameter [, mixed $... ]] ) 

Description

Calls a user defined function or method given by the function parameter, with the following arguments. This function must be called within a method context, it can't be used outside a class. It uses the late static binding.

Return Values

Returns the function result, or FALSE on error.