Does PHP provide a method to determine the class of a given object?
-Steve
You can use get_class($obj) to determine what the class of an object is. Manual entry is here: http://www.php.net/manual/en/function.get-class.php
There are also plenty of other class/object functions/methods that are quite useful so check them out. http://www.php.net/manual/en/ref.classobj.php
Ah, it was right in front of me. Thanks for pointing it out, Bryan.