get_class_vars

(PHP 4 >= 4.0.0)

get_class_vars --  Returns an array of default properties of the class

Description

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().

Will produce:

var2 : xyz
var3 : 100

See also get_class_methods(), get_object_vars()