get_class_vars Get the default properties of the class &reftitle.description; arrayget_class_vars stringclass Get the default properties of the given class. &reftitle.parameters; class The class name &reftitle.returnvalues; Returns an associative array of declared properties visible from the current scope, with their default value. The resulting array elements are in the form of varname => value. In case of an error, it returns &false;. &reftitle.examples; <function>get_class_vars</function> example var1 = "foo"; $this->var2 = "bar"; return true; } } $my_class = new myclass(); $class_vars = get_class_vars(get_class($my_class)); foreach ($class_vars as $name => $value) { echo "$name : $value\n"; } ?> ]]> &example.outputs; <function>get_class_vars</function> and scoping behaviour ]]> &example.outputs; &reftitle.seealso; get_class_methods get_object_vars