Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

forward_static_call_array(3) [php man page]

FORWARD_STATIC_CALL_ARRAY(3)						 1					      FORWARD_STATIC_CALL_ARRAY(3)

forward_static_call_array - Call a static method and pass the arguments as array

SYNOPSIS
mixed forward_static_call_array (callable $function, array $parameters) DESCRIPTION
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, sim- ilarly to call_user_func_array(3). PARAMETERS
o $function - The function or method to be called. This parameter may be an array, with the name of the class, and the method, or a string, with a function name. o $parameter - One parameter, gathering all the method parameter in one array. Note Note that the parameters for forward_static_call_array(3) are not passed by reference. RETURN VALUES
Returns the function result, or FALSE on error. EXAMPLES
Example #1 forward_static_call_array(3) example <?php class A { const NAME = 'A'; public static function test() { $args = func_get_args(); echo static::NAME, " ".join(',', $args)." "; } } class B extends A { const NAME = 'B'; public static function test() { echo self::NAME, " "; forward_static_call_array(array('A', 'test'), array('more', 'args')); forward_static_call_array( 'test', array('other', 'args')); } } B::test('foo'); function test() { $args = func_get_args(); echo "C ".join(',', $args)." "; } ?> The above example will output: B B more,args C other,args SEE ALSO
forward_static_call(3), call_user_func(3), call_user_func_array(3), is_callable(3), information about the callback type. PHP Documentation Group FORWARD_STATIC_CALL_ARRAY(3)

Check Out this Related Man Page

REFLECTIONMETHOD(3)							 1						       REFLECTIONMETHOD(3)

The ReflectionMethod class

INTRODUCTION
The ReflectionMethod class reports information about a method. CLASS SYNOPSIS
ReflectionMethod ReflectionMethodextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionMethod::IS_STATIC1 o const integer$ReflectionMethod::IS_PUBLIC256 o const integer$ReflectionMethod::IS_PROTECTED512 o const integer$ReflectionMethod::IS_PRIVATE1024 o const integer$ReflectionMethod::IS_ABSTRACT2 o const integer$ReflectionMethod::IS_FINAL4 Properties o public$name o public$class Methods o public ReflectionMethod::__construct (mixed $class, string $name) o publicstatic string ReflectionMethod::export (string $class, string $name, [bool $return = false]) o public Closure ReflectionMethod::getClosure (object $object) o public ReflectionClass ReflectionMethod::getDeclaringClass (void ) o public int ReflectionMethod::getModifiers (void ) o public ReflectionMethod ReflectionMethod::getPrototype (void ) o public mixed ReflectionMethod::invoke (object $object, [mixed $parameter], [mixed $...]) o public mixed ReflectionMethod::invokeArgs (object $object, array $args) o public bool ReflectionMethod::isAbstract (void ) o public bool ReflectionMethod::isConstructor (void ) o public bool ReflectionMethod::isDestructor (void ) o public bool ReflectionMethod::isFinal (void ) o public bool ReflectionMethod::isPrivate (void ) o public bool ReflectionMethod::isProtected (void ) o public bool ReflectionMethod::isPublic (void ) o public bool ReflectionMethod::isStatic (void ) o public void ReflectionMethod::setAccessible (bool $accessible) o public string ReflectionMethod::__toString (void ) Inherited methods o finalprivate void ReflectionFunctionAbstract::__clone (void ) o public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass (void ) o public object ReflectionFunctionAbstract::getClosureThis (void ) o public string ReflectionFunctionAbstract::getDocComment (void ) o public int ReflectionFunctionAbstract::getEndLine (void ) o public ReflectionExtension ReflectionFunctionAbstract::getExtension (void ) o public string ReflectionFunctionAbstract::getExtensionName (void ) o public string ReflectionFunctionAbstract::getFileName (void ) o public string ReflectionFunctionAbstract::getName (void ) o public string ReflectionFunctionAbstract::getNamespaceName (void ) o public int ReflectionFunctionAbstract::getNumberOfParameters (void ) o public int ReflectionFunctionAbstract::getNumberOfRequiredParameters (void ) o public array ReflectionFunctionAbstract::getParameters (void ) o public string ReflectionFunctionAbstract::getShortName (void ) o public int ReflectionFunctionAbstract::getStartLine (void ) o public array ReflectionFunctionAbstract::getStaticVariables (void ) o public bool ReflectionFunctionAbstract::inNamespace (void ) o public bool ReflectionFunctionAbstract::isClosure (void ) o public bool ReflectionFunctionAbstract::isDeprecated (void ) o public bool ReflectionFunctionAbstract::isGenerator (void ) o public bool ReflectionFunctionAbstract::isInternal (void ) o public bool ReflectionFunctionAbstract::isUserDefined (void ) o public bool ReflectionFunctionAbstract::isVariadic (void ) o public bool ReflectionFunctionAbstract::returnsReference (void ) o abstractpublic void ReflectionFunctionAbstract::__toString (void ) PROPERTIES
o $name -Method name o $class -Class name PREDEFINED CONSTANTS
REFLECTIONMETHOD MODIFIERS
o ReflectionMethod::IS_STATIC -Indicates that the method is static. o ReflectionMethod::IS_PUBLIC -Indicates that the method is public. o ReflectionMethod::IS_PROTECTED -Indicates that the method is protected. o ReflectionMethod::IS_PRIVATE -Indicates that the method is private. o ReflectionMethod::IS_ABSTRACT -Indicates that the method is abstract. o ReflectionMethod::IS_FINAL -Indicates that the method is final. PHP Documentation Group REFLECTIONMETHOD(3)
Man Page