ReflectionClass::getMethods

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getMethods获取方法数组

描述

public ReflectionClass::getMethods(?int $filter = null): array

获取类的方法数组。

参数

filter

过滤结果,仅包含具有某些属性的方法。默认为不进行过滤。

ReflectionMethod::IS_STATICReflectionMethod::IS_PUBLICReflectionMethod::IS_PROTECTEDReflectionMethod::IS_PRIVATEReflectionMethod::IS_ABSTRACTReflectionMethod::IS_FINAL 的任何按位或运算,以便返回具有任何给定属性的所有方法。

注意: 请注意,其他按位运算,例如 ~ 将不会按预期工作。换句话说,例如,无法检索所有非静态方法。

返回值

一个 array,包含反映每个方法的 ReflectionMethod 对象。

变更日志

版本 描述
7.2.0 filter 现在可以为空。

示例

示例 #1 ReflectionClass::getMethods() 的基本用法

<?php
class Apple {
public function
firstMethod() { }
final protected function
secondMethod() { }
private static function
thirdMethod() { }
}

$class = new ReflectionClass('Apple');
$methods = $class->getMethods();
var_dump($methods);
?>

上面的示例将输出

array(3) {
  [0]=>
  object(ReflectionMethod)#2 (2) {
    ["name"]=>
    string(11) "firstMethod"
    ["class"]=>
    string(5) "Apple"
  }
  [1]=>
  object(ReflectionMethod)#3 (2) {
    ["name"]=>
    string(12) "secondMethod"
    ["class"]=>
    string(5) "Apple"
  }
  [2]=>
  object(ReflectionMethod)#4 (2) {
    ["name"]=>
    string(11) "thirdMethod"
    ["class"]=>
    string(5) "Apple"
  }
}

示例 #2 过滤来自 ReflectionClass::getMethods() 的结果

<?php
class Apple {
public function
firstMethod() { }
final protected function
secondMethod() { }
private static function
thirdMethod() { }
}

$class = new ReflectionClass('Apple');
$methods = $class->getMethods(ReflectionMethod::IS_STATIC | ReflectionMethod::IS_FINAL);
var_dump($methods);
?>

上面的示例将输出

array(2) {
  [0]=>
  object(ReflectionMethod)#2 (2) {
    ["name"]=>
    string(12) "secondMethod"
    ["class"]=>
    string(5) "Apple"
  }
  [1]=>
  object(ReflectionMethod)#3 (2) {
    ["name"]=>
    string(11) "thirdMethod"
    ["class"]=>
    string(5) "Apple"
  }
}

参见

添加说明

用户贡献说明 3 个说明

x_atrix at yahoo dot com
11 年前
请注意,对于 ReflectionClass::getMethods(),最终类中的并非所有方法都是最终方法,只有那些具有显式修饰符的方法才是最终方法。
如果您想对过滤器使用与运算符,这里有一个简单的实现
<?php
final class Apple {
public function
publicMethod() { }
public final function
publicFinalMethod() { }
protected final function
protectedFinalMethod() { }
private static function
privateStaticMethod() { }
}

class
MyReflection extends ReflectionClass {
public function
__construct($argument) {
parent::__construct($argument);
}

/**
* (non-PHPdoc)
* @see ReflectionClass::getMethods()
*/
public function getMethods($filter = null, $useAndOperator = true) {
if (
$useAndOperator !== true) {
return
parent::getMethods($filter);
}

$methods = parent::getMethods($filter);
$results = array();

foreach (
$methods as $method) {
if ((
$method->getModifiers() & $filter) === $filter) {
$results[] = $method;
}
}

return
$results;
}
}

$class = new MyReflection('Apple');
$methods = $class->getMethods(ReflectionMethod::IS_FINAL | ReflectionMethod::IS_PUBLIC);
var_dump($methods);

$methods = $class->getMethods(ReflectionMethod::IS_FINAL | ReflectionMethod::IS_PUBLIC, false);
var_dump($methods);
?>

结果
array(1) {
[0]=>
object(ReflectionMethod)#4 (2) {
["name"]=>
string(17) "publicFinalMethod"
["class"]=>
string(5) "Apple"
}
}

array(3) {
[0]=>
&object(ReflectionMethod)#5 (2) {
["name"]=>
string(12) "publicMethod"
["class"]=>
string(5) "Apple"
}
[1]=>
&object(ReflectionMethod)#3 (2) {
["name"]=>
string(17) "publicFinalMethod"
["class"]=>
string(5) "Apple"
}
[2]=>
&object(ReflectionMethod)#6 (2) {
["name"]=>
string(20) "protectedFinalMethod"
["class"]=>
string(5) "Apple"
}
}
tom at r dot je
10 年前
ReflectionClass::getMethods() 按类(继承树中最低的类优先)排序方法,然后按它们在类定义中定义的顺序排序

<?php
class A {
public function
method1() {

}

public function
method2() {

}
}

class
B extends A {

public function
method3() {

}

public function
method4() {

}
}

$class = new ReflectionClass('B');
print_r($class->getMethods());
?>

这将输出

Array
(
[0] => ReflectionMethod Object
(
[name] => method3
[class] => B
)

[1] => ReflectionMethod Object
(
[name] => method4
[class] => B
)

[2] => ReflectionMethod Object
(
[名称] => method1
[类] => A
)

[3] => ReflectionMethod 对象
(
[名称] => method2
[类] => A
)

)
deminy at deminy dot net
13 年前
ReflectionClass::getMethods 方法在不同版本的 PHP 中的行为并不一致。对于以下代码段

<?php
class Dummy implements Iterator
{
public function
current () {}
public function
next () {}
public function
key () {}
public function
valid () {}
public function
rewind () {}
}

$reflection = new ReflectionClass('Dummy');
$aMethods = $reflection->getMethods();
echo
'# of methods: ', count($aMethods), "\n";
?>

,它在 PHP 5.2.14 和 PHP 5.2.17 上输出 "# of methods: 10",包括类本身和接口中定义的所有方法,无论方法是否已被实现或重写;然而,它在 PHP 5.3.5 上返回 "# of methods: 5"。根据我同事的一些其他测试,我认为它在 PHP 5.2.10 和 PHP 5.3.6 上也会返回 "# of methods: 5"。
To Top