is_a Checks if the object is of this class or has this class as one of its parents &reftitle.description; boolis_a objectobject stringclass_name Checks if the given object is of this class or has this class as one of its parents. The is_a function is deprecated as of PHP 5 in favor of the instanceof type operator. &reftitle.parameters; object The tested object class_name The class name &reftitle.returnvalues; Returns &true; if the object is of this class or has this class as one of its parents, &false; otherwise. &reftitle.examples; <function>is_a</function> example ]]> Using the <emphasis>instanceof</emphasis> operator in PHP 5 ]]> &reftitle.seealso; get_class get_parent_class is_subclass_of