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