可以列出所有PHP类及其方法和属性吗?

时间:2010-03-03 10:30:43

标签: php oop

我正在用我的PHP实现对OOP的飞跃。有没有办法列出所有活动类及其方法和属性?

3 个答案:

答案 0 :(得分:7)

<强> Complete list of similar functions :)

快速查看:

get_declared_classes() // gives you all declared classes
get_class_methods() // gives you all methods of class
get_class_vars() // gives you properties of the class
get_object_vars() // gives you propertis of an object
get_parent_class()  // gives you parent class of the current class

答案 1 :(得分:4)

另外,您可能对Reflection API offered by PHP感兴趣。

正如他们在介绍中声称的那样:

  

PHP 5带有完整的反映   添加能力的API   逆向工程类,接口,   功能,方法和扩展。   另外,反射API   提供检索文档评论的方法   对于函数,类和方法。

答案 2 :(得分:1)