最常用的几个个php反射函数 get_class get_class_methods1. get_class — 返回对象的类名string get_class ([ object $obj ] )返回对象实例 obj 所属类的名字。如果 obj 不是一个对象则返回 FALSE。Note: 在 PHP 扩展库中定义的类返回其原始定义的名字。在 PHP 4 中 get_class() 返回用户定义的类名的小写形式,但是在 PHP 5 中将返回类名定义时的名字,如同扩展库中的类名一样。 Note: 自 PHP 5 起,如果在对象的方法中调用则 obj 为可选项。Example#1 使用 get_c Read More