PHP延迟静态绑定示例分享

前端之家收集整理的这篇文章主要介绍了PHP延迟静态绑定示例分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

没怎么用过这个新特性,其实也不算新啦,试试吧,现在静态类的继承很方便了

PHP;"> PHP class A { protected static $def = '123456';

public static function test() {
echo get_class(new static);
}

public static function test2() {
echo static::$def;
}
}

class B extends A {
protected static $def = '456789';
}

class C extends A {
protected static $def = 'abcdef';
}

echo B::test();
echo '
';
echo C::test();
echo '
';
echo B::test2();
echo '
';
echo C::test2();
echo '
';
echo A::test();
echo '
';
echo A::test2();
echo '
';

<div class="jb51code">
<pre class="brush:xhtml;">
// 输出结果
B
C
456789
abcdef
A
123456

原文链接:https://www.f2er.com/php/24363.html

猜你在找的PHP相关文章