vote up 1 vote down star

How can i iterate over the (public or private) properties of a php class?

flag

52% accept rate

2 Answers

vote up 5 vote down

http://nz.php.net/get_object_vars

class foo {
    private $a;
    public $b = 1;
    public $c;
    private $d;
    static $e;

    public function test() {
        var_dump(get_object_vars($this));
    }
}

$test = new foo;
var_dump(get_object_vars($test));

$test->test();

?>

array(2) {
  ["b"]=>
  int(1)
  ["c"]=>
  NULL
}
array(4) {
  ["a"]=>
  NULL
  ["b"]=>
  int(1)
  ["c"]=>
  NULL
  ["d"]=>
  NULL
}

Make sense?

link|flag
So could i do a: foreach(get_object_vars($this) as $prop=>$val) ? – cellis May 14 at 2:21
yes, however only the public vars will be displayed, private ones are returned only when the caller of get_object_vars is inside the class. – jim May 14 at 2:32
vote up 0 vote down

Yep, as Lou said, get_object_vars is the function you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.