php – static :: staticFunctionName()

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了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();

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

本图文内容来网友网络收集整理提供,作为学习参考使用,版权属于原作者。

脚本宝典总结

以上是脚本宝典为你收集整理的php – static :: staticFunctionName()全部内容,希望文章能够帮你解决php – static :: staticFunctionName()所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。