PHP 日本大会 2024

forward_static_call_array

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

forward_static_call_array调用静态方法并以数组形式传递参数

描述

forward_static_call_array(callable $callback, array $args): mixed

调用由 callback 参数给定的用户定义函数或方法。此函数必须在方法上下文中调用,不能在类外部使用。它使用 后期静态绑定。转发方法的所有参数都作为值传递,并作为数组传递,类似于 call_user_func_array()

参数

callback

要调用的函数或方法。此参数可以是一个 array,包含类名和方法名,或者是一个 string,包含函数名。

参数

一个参数,将所有方法参数收集到一个数组中。

注意:

请注意,forward_static_call_array() 的参数不是通过引用传递的。

返回值

返回函数结果,或在出错时返回 false

示例

示例 #1 forward_static_call_array() 示例

<?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";
}

?>

以上示例将输出

B
B more,args 
C other,args

参见

添加注释

用户贡献注释 2 条注释

nino dot skopac at gmail dot com
8 年前
关于命名空间

请确保包含完整的命名空间类路径

<?php
forward_static_call_array
(
array(
'NAMESPACE\CLASS_NAME', 'STATIC_METHOD'),
$params
);
israfilov93 at gmal dot com
6 年前
一个学术示例,说明 forward_static_call() 何时有用

<?php

class A
{
public static function
test()
{
var_dump('we were here');
return static::class;
}
}

class
B extends A
{
public static function
test()
{
return
self::class;
}
}

class
C extends B
{
public static function
test()
{
$grandParent = get_parent_class(parent::class); // $grandParent is A
return forward_static_call([$grandParent, __FUNCTION__]); // calls A::test()
}
}

// prints
// string(12) "we were here"
// string(1) "C"
var_dump(C::test());
To Top