forward_static_call Call a static method
发表日期:2021-07-01 08:57:15 | 来源: | | 浏览(824) 分类:函数处理 函数
forward_static_call
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
forward_static_call — Call a static method
说明
$function
, mixed $parameter
= ?, mixed $...
= ?): mixed
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.
参数
-
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
-
Zero or more parameters to be passed to the function.
返回值
Returns the function result, or false
on error.
范例
示例 #1 forward_static_call() 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('A', 'test'), 'more', 'args'); forward_static_call( 'test', 'other', 'args'); } } B::test('foo'); function test() { $args = func_get_args(); echo "C ".join(',', $args)." \n"; } ?>
以上例程会输出:
B B more,args C other,args
参见
- forward_static_call_array() - Call a static method and pass the arguments as array
- call_user_func_array() - 调用回调函数,并把一个数组参数作为回调函数的参数
- call_user_func() - 把第一个参数作为回调函数调用
- is_callable() - 检测参数是否为合法的可调用结构
- PHP(0)
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- call_user_func_array 调用回调函数,并把一个数组参数作为回调函数的参数(0)
- call_user_func 把第一个参数作为回调函数调用(0)
- create_function Create an anonymous (lambda-style) function(0)
- forward_static_call_array Call a static method and pass the arguments as array(0)
- forward_static_call Call a static method(0)
- func_get_arg 返回参数列表的某一项(0)
- func_get_args 返回一个包含函数参数列表的数组(0)
- func_num_args Returns the number of arguments passed to the function(0)
- function_exists 如果给定的函数已经被定义就返回 true(0)
- get_defined_functions 返回所有已定义函数的数组(0)
- register_shutdown_function 注册一个会在php中止时执行的函数(0)
- register_tick_function Register a function for execution on each tick(0)
- unregister_tick_function De-register a function for execution on each tick(0)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)