|
get_mangled_object_varsReturns an array of mangled object properties Description
array get_mangled_object_vars(object
$object)
Returns an array whose elements are the Parameters
Return Values
Returns an array containing all properties, regardless of visibility, of Examples
Example #1 get_mangled_object_vars example The above example will output:
array(6) {
["Bprivate"]=>
int(4)
["public"]=>
int(1)
["*protected"]=>
int(2)
["Aprivate"]=>
int(3)
["dynamic"]=>
int(5)
[6]=>
int(6)
}
array(2) {
["AOprivate"]=>
int(1)
["dynamic"]=>
int(2)
}
See Also
|