微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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();

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

原文地址:https://www.jb51.cc/php/130388.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐