<?php /** * static self 区别与总结 * 总结: * 1.在 PHP 里,在没有继承时候,你用self::class 和 static::class是一样的,都是获取当前类名。 * 2.如果用到了继承,并且这个方法写在了父类里,你想要分别获取当前父类名和未知的子类名,就要按照下面的方法进行获取。 * 在 PHP 类中,self指向的是当前方法存在的这个类,也就是父类。static指向的是最终那个子类。 * * 1.在一个类A中,self::who() 等同于 static::who() * 2.当子类B继承父类A,子类B::test(),调用的时候,区别: * test()方法调用 self::who() 调用父类的who()方法 * test()方法调用 static::who()调用的是子类的who()方法 */ /** * Class A * 1.在同一个类中使用 self static 获取的都是获取当前类名 */class A{ public static function who() { echo __CLASS__; } public static function test() { self::who(); echo ‘<br>‘; // A static::who(); echo ‘<br>‘; // A }} A::test(); echo ‘<br>‘; // A A /** * class B extends A * B::test(); * self::who(); 调用 A 父类 的 who 方法 * static::who(); 调用子类 B 的 who 方法 */class B extends A{ public static function who() { echo __CLASS__; }} echo B::test(); echo ‘<br>‘; // A B /** * 父类P中 获取子类C的类名 */class P{ public static function getParent() { return self::class; } public static function getChild() { return static::class; }} class C extends P{ } echo C::getParent(); // Pecho C::getChild(), PHP_EOL; // C
原文地址:https://www.cnblogs.com/dreamofprovence/p/11743435.html
时间: 2024-10-10 19:23:12