|
Posted by NC on 10/03/05 06:31
www.douglassdavis.com wrote:
>
> Say I am retrieving an object from a function...
....
> Now, there could be two "types" of objects returned, with two distinct
> sets of members.
>
> say one type has a member "prefix" and one has a member "prefix1"
>
> my question is, how can I figure out which type the function has
> returned?
Use get_object_vars() to obtain an associative array of defined object
properties for the returned object. Alternetively, use get_class() to
see the type of the returned object. For more information, see the
Manual:
http://www.php.net/get_object_vars
http://www.php.net/get_class
Cheers,
NC
Navigation:
[Reply to this message]
|