我有一些创建对象的类。在 __construct 函数中,我检查属性。如果它们不匹配,我想删除创建的对象。
$example = new example('Value 1', 2, false);
foreach (get_object_vars($this) as $propertie => $value) {
if (empty($value)) {
// unset(); What i have to insert in unset() ?
}
}
谢谢!