📜  PHP | ReflectionClass getMethods()函数

📅  最后修改于: 2022-05-13 01:56:46.917000             🧑  作者: Mango

PHP | ReflectionClass getMethods()函数

ReflectionClass::getMethods()函数是PHP中的一个内置函数,用于返回指定方法的数组。
句法:

array ReflectionClass::getMethods( int $filter )

参数:此函数接受单个参数过滤器,用于删除某些方法。
返回值:此函数返回指定方法的数组。
下面的程序说明了PHP中的 ReflectionClass::getMethods()函数:
方案一:

php
getMethods();
 
// Getting an array of specified methods
var_dump($methods);
?>


php
getMethods(ReflectionMethod::IS_STATIC);
 
// Getting an array of specified methods
var_dump($methods);
?>


输出
getMethods();

// Getting an array of specified methods
var_dump($methods);
?>

方案二:

PHP

getMethods(ReflectionMethod::IS_STATIC);
 
// Getting an array of specified methods
var_dump($methods);
?>
输出:
array(2) {
  [0]=>
  object(ReflectionMethod)#2 (2) {
    ["name"]=>
    string(2) "EE"
    ["class"]=>
    string(11) "Departments"
  }
  [1]=>
  object(ReflectionMethod)#3 (2) {
    ["name"]=>
    string(2) "IT"
    ["class"]=>
    string(11) "Departments"
  }
}

参考: https://www. PHP.net/manual/en/reflectionclass.getmethods。 PHP