PHP forward_static_call vs call_user_func

时间:2011-02-21 01:31:59

标签: php php-5.3

forward_static_callcall_user_func

之间有何区别?

同样的问题适用于forward_static_call_arraycall_user_func_array

1 个答案:

答案 0 :(得分:14)

区别在于forward_static_call如果上升到类层次结构并明确命名一个类,则不会重置“被调用类”信息,而call_user_func会在这些情况下重置信息(但仍然会如果使用parentstaticself),则不会重置。

示例:

<?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只能在类方法中调用。