时间:2021-07-01 10:21:17 帮助过:37人阅读
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(); // 失败。