<?php class A{ public $stuff; } $x = new A; var_dump(property_exists($x, "stuff")); var_dump($x->stuff); unset($x->stuff); var_dump(property_exists($x, "stuff")); var_dump($x->stuff);
You have javascript disabled. You will not be able to edit any code.