PHP --反射 --獲取類的方法

大飛_dafei發表於2019-03-05

通常獲取類方法 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);

官方地址: ReflectionClass::getMethods

 變數與型別相關擴充套件 -- 反射

相關文章