property_exists true, , , .
get_class_vars , , ( , ). , , , .
, property_exists false, , (: ), .
:
class Foo {
public $foo;
private $bar;
public function test() {
var_dump(get_class_vars(__CLASS__));
}
}
$obj = new Foo;
$obj->baz = 'hello';
property_exists($obj, 'bar');
property_exists($obj, 'baz');
property_exists(get_class($obj), 'baz');
get_class_vars(get_class($obj));
$obj->test();