これと同様:
class MyClass { private $index; public function __construct($index) { if ($index === 0) { // 销毁对象 } $this->index = $index; } public function getIndex() { return $this->index; }}$t = new MyClass(1);echo $t->getIndex(); // 正确返回$t = new MyCalss(0);echo $t->getIndex(); // 失败。
これはなぜですか? それともシングルトン モードですか?
$t オブジェクトが破棄されると、参照がなくなります
プライベート コンストラクター
シングルトン モードを試してみましょう
見つけました、trigger_error を直接その中に入れました