This function will return an associative array of default properties of the class. The resulting array elements are in the form of varname => value.
Prior to PHP 4.2.0, Uninitialized class variables will not be reported by get_class_vars().
<?php
class myclass {
var $var1; // this has no default value...
var $var2 = "xyz";
var $var3 = 100;
// constructor
function myclass() {
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";
}
?>Will produce:
// Before PHP 4.2.0
var2 : xyz
var3 : 100
// As of PHP 4.2.0
var1 :
var2 : xyz
var3 : 100See also get_class_methods(), get_object_vars()
| This HTML Help has been published using the chm2web software. |