<?php class Foo { public int $foo = 42; public function unset_me() { unset( $this->foo ); } public function __set($key, $value) { echo "__set called with {$value}\n"; } } $f = new Foo; $f->foo = 42; $f->unset_me(); $f->foo = 43;
You have javascript disabled. You will not be able to edit any code.