Is there a way to find out all the properties from an object?

For instance if I have:
---------------------------
class test
{
        var $a;
        var $b;
        var $c;
        function test(){}
}
$example= new test();
---------------------------
, is there a function to tell me that the object example has the
'a','b',and 'c' properties.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to