php – static :: staticFunctionName()

我知道什么是self :: staticFunctionName()和parent :: staticFunctionName(),以及它们是如何彼此不同的以及从$this-> functionName.

但是什么是static :: staticFunctionName()?

这是 PHP 5.3中使用的关键字来调用更晚的静态绑定.
请阅读手册: http://php.net/manual/en/language.oop5.late-static-bindings.php

总而言之,static :: foo()的工作原理就像一个动态的self :: foo().

class A {
    static function foo() {
        // This will be executed.
    }
    static function bar() {
        self::foo();
    }
}

class B extends A {
    static function foo() {
        // This will not be executed.
        // The above self::foo() refers to A::foo().
    }
}

B::bar();

静态解决这个问题:

class A {
    static function foo() {
        // This is overridden in the child class.
    }
    static function bar() {
        static::foo();
    }
}

class B extends A {
    static function foo() {
        // This will be executed.
        // static::foo() is bound late.
    }
}

B::bar();

静态作为这个行为的关键字是有点混乱,因为它是全部.

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...