PHP --反射 --获取类的方法
通常获取类方法 get_class_methods(),这个函数只能返回 public 类型的方法
class Apple { public function firstMethod() { } final protected function secondMethod() { } private static function thirdMethod() { } } $class = new ReflectionClass('Apple'); $methods = $class->getMethods(); var_dump($methods);