从PHP中的实例调用静态方法,以后的弃用?

时间:2011-06-18 20:20:00

标签: php this static-methods deprecated instance-methods

虽然我理解在静态上下文中调用方法时$this变量不可用,但为了帮助将我的应用程序组件彼此解耦,我认为从实例调用静态方法是有意义的。例如:

class MyExample{
    private static $_data = array();
    public static function setData($key, $value){
        self::$_data[$key] = $value;
    }
    // other non-static methods, using self::$_data
}

// to decouple, another class or something has been passed an instance of MyExample
// rather than calling MyExample::setData() explicitly
// however, this data is now accessible by other instances
$example->setData('some', 'data');

是否有计划弃用此类功能,或者我是否期望获得对此的支持?我使用error_reporting(-1)来确保一个非常严格的开发环境,并且还没有任何问题( PHP 5.3.6 )但是我知道反向变得不受支持;也就是说,静态调用实例方法。

1 个答案:

答案 0 :(得分:30)

来自Php documentation

  

声明为static的属性无法通过实例化访问       class object(虽然静态方法可以)。

所以我认为它会在很长一段时间内得到前瞻性支持。