Rumah > Artikel > pembangunan bahagian belakang > 【php类与对象】匿名类
本篇文章给大家分享的内容是关于【php类与对象】匿名类 ,有着一定的参考价值,有需要的朋友可以参考一下
匿名类
PHP 7 开始支持匿名类。
作用:创建一次性的简单对象
可以传递参数到匿名类的构造器,也可以扩展(extend)其他类、实现接口(implement interface),以及像其他普通的类一样使用 trait:
<?phpclass SomeClass {}interface SomeInterface {}trait SomeTrait {} var_dump(new class(10) extends SomeClass implements SomeInterface { private $num; public function __construct($num) { $this->num = $num; } use SomeTrait; });/* outputs: object(class@anonymous)#1 (1) { ["Command line code0x104c5b612":"class@anonymous":private]=> int(10) } */
匿名类被嵌套进普通 Class 后,不能访问这个外部类(Outer class)的 private(私有)、protected(受保护)方法或者属性。
为了访问外部类(Outer class)protected 属性或方法,匿名类可以 extend(扩展)此外部类。
为了使用外部类(Outer class)的 private 属性,必须通过构造器传进来:
<?phpclass Outer{ private $prop = 1; protected $prop2 = 2; protected function func1() { return 3; } public function func2() { return new class($this->prop) extends Outer { private $prop3; public function __construct($prop) { $this->prop3 = $prop; } public function func3() { return $this->prop2 + $this->prop3 + $this->func1(); } }; } }echo (new Outer)->func2()->func3(); //6
声明的同一个匿名类,所创建的对象都是这个类的实例。
匿名类的名称是通过引擎赋予的,如下例所示。 由于实现的细节,不应该去依赖这个类名。
<?phpecho get_class(new class {});//class@anonymousD:\phpStudy2018\PHPTutorial\WWW\index.php00500020
相关推荐:
Atas ialah kandungan terperinci 【php类与对象】匿名类 . Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!