标签: php class
我正在尝试查找所有类的列表,包括扩展类。我尝试了get_declared_classes(),但它排除了所有扩展类。
get_declared_classes()
任何获得所有课程的方法,包括扩展?
class profile extends Authentication { // methods }
所以我想找到Authentication以及profile
Authentication
profile