php – static :: staticFunctionName()
发布时间:2020-05-25 08:45:40 所属栏目:PHP 来源:互联网
导读:我知道什么是self :: staticFunctionName()和parent :: staticFunctionName(),以及它们是如何彼此不同的以及从$this- functionName. 但是什么是static :: staticFunctionName()? 这是 PHP 5.3中使用的关键字来调用更晚的静态绑定. 请阅读手册: http://php.n
|
我知道什么是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();
静态作为这个行为的关键字是有点混乱,因为它是全部. (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
