Which one of the following function should I use to find the parent class of a class?
Which one of the following function should I use to find the parent class of a class? Correct Answer get_parent_class()
The class functions also allow us to chart inheritance relationships.This function requires either an object or a class name, and it returns the name of the superclass, if any. If no such class exists, that is, if the class we are testing does not have a parent, then the function returns false.