forward_static_call_array
(PHP 5 >= 5.3.0, PHP 7)
forward_static_call_array — Call a static method and pass the arguments as array
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, similarly to call_user_func_array().
Parameters
-
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.
-
parameter
-
One parameter, gathering all the method parameter in one array.
Note:
Note that the parameters for forward_static_call_array() are not passed by reference.
Examples
Example #1 forward_static_call_array() example
<?php
class A
{
const NAME = 'A';
public static function test() {
$args = func_get_args();
echo static::NAME, " ".join(',', $args)." \n";
}
}
class B extends A
{
const NAME = 'B';
public static function test() {
echo self::NAME, "\n";
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)." \n";
}
?>
The above example will output:
B B more,args C other,args
See Also
- forward_static_call() - Call a static method
- call_user_func() - Call the callback given by the first parameter
- call_user_func_array() - Call a callback with an array of parameters
- is_callable() - Verify that the contents of a variable can be called as a function
- information about the callback type
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-function.forward-static-call-array.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.