1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
| <?php
abstract class Foo
{
public function __construct()
{
if (method_exists($this, 'publicMethod')) {
$this->publicMethod();
}
}
abstract public function abstractMethod();
final public function finalMethod()
{
}
}
class Bar extends Foo
{
public function publicMethod()
{
}
protected function protectedMethod()
{
}
private function privateMethod()
{
}
public function abstractMethod()
{
}
public static function staticMethod()
{
}
public function __call($method, $arguments)
{
}
}
$bar = new Bar();
$callables = [
is_callable([$bar, '__construct'], false, $a),
is_callable([$bar, 'publicMethod'], false, $b),
is_callable([$bar, 'protectedMethod'], false, $c),
is_callable([$bar, 'privateMethod'], false, $d),
is_callable([$bar, 'abstractMethod'], false, $e),
is_callable([$bar, 'staticMethod'], false, $f),
is_callable([$bar, 'finalMethod'], false, $g),
is_callable([$bar, 'notExistMethod'], true, $h),
];
$names = [$a, $b, $c, $d, $e, $f, $g, $h];
var_dump($callables);
var_dump($names);
// 结果
array(8) {
[0] =>
bool(true)
[1] =>
bool(true)
[2] =>
bool(true)
[3] =>
bool(true)
[4] =>
bool(true)
[5] =>
bool(true)
[6] =>
bool(true)
[7] =>
bool(true)
}
array(8) {
[0] =>
string(16) "Bar::__construct"
[1] =>
string(17) "Bar::publicMethod"
[2] =>
string(20) "Bar::protectedMethod"
[3] =>
string(18) "Bar::privateMethod"
[4] =>
string(19) "Bar::abstractMethod"
[5] =>
string(17) "Bar::staticMethod"
[6] =>
string(16) "Bar::finalMethod"
[7] =>
string(19) "Bar::notExistMethod"
}
|