array get_class_vars (string class_name)
This function will return an associative array of default properties of the class. The resulting array elements are in the form of varname => value.
Note: Uninitialized class variables will not be reported by get_class_vars().
Example 1. get_class_vars() example
|
Will produce:
var2 : xyz
var3 : 100
|
See also get_class_methods(), get_object_vars()