这个为什么会报错?
<?php class A{ public $a=2; private function __construct(){ $this->a=4; }} $obj =new A(); echo $obj->a;
Can't the constructor be privatized? -PHP Chinese website Q&A-Can't the constructor be privatized? -PHP Chinese website Q&A
Let’s take a look and learn.
构造函数私有化后,不能再使用 new 外部调用,私有方法只能类内部使用。
可以这样:
<?php class A { public $a = 2; private function __construct(){ $this->a=4; } public static function createInstance() { return new A(); }} $obj = A::createInstance();
Can't the constructor be privatized? -PHP Chinese website Q&A-Can't the constructor be privatized? -PHP Chinese website Q&A
Let’s take a look and learn.
构造函数私有化后,不能再使用 new 外部调用,私有方法只能类内部使用。
可以这样: