forward_static_call
和call_user_func
同样的问题适用于forward_static_call_array
和call_user_func_array
答案 0 :(得分:14)
区别在于forward_static_call
如果上升到类层次结构并明确命名一个类,则不会重置“被调用类”信息,而call_user_func
会在这些情况下重置信息(但仍然会如果使用parent
,static
或self
),则不会重置。
示例:
<?php
class A {
static function bar() { echo get_called_class(), "\n"; }
}
class B extends A {
static function foo() {
parent::bar(); //forwards static info, 'B'
call_user_func('parent::bar'); //forwarding, 'B'
call_user_func('static::bar'); //forwarding, 'B'
call_user_func('A::bar'); //non-forwarding, 'A'
forward_static_call('parent::bar'); //forwarding, 'B'
forward_static_call('A::bar'); //forwarding, 'B'
}
}
B::foo();
请注意,forward_static_call
拒绝转发 down 类层次结构:
<?php
class A {
static function foo() {
forward_static_call('B::bar'); //non-forwarding, 'B'
}
}
class B extends A {
static function bar() { echo get_called_class(), "\n"; }
}
A::foo();
最后,请注意forward_static_call
只能在类方法中调用。