|
get_class_varsGet the default properties of the class Description
array get_class_vars
( string
$class_name
)Get the default properties of the given class. Parameters
Return Values
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 Changelog
Examples
Example #1 get_class_vars example
<?php The above example will output: var1 : var2 : xyz var3 : 100
Example #2 get_class_vars and scoping behaviour
<?php The above example will output: // 5.0.0 a| * b| TestCase c a| * b| TestCase c // 5.0.1 - 5.0.2 a|b|c a|b|c // 5.0.3 + a|b|c a See Also
|