PHP 日本大会 2024

ReflectionMethod::getModifiers

(PHP 5, PHP 7, PHP 8)

ReflectionMethod::getModifiers获取方法修饰符

描述

public ReflectionMethod::getModifiers(): int

返回此方法的访问修饰符的位字段。

参数

此函数没有参数。

返回值

修饰符的数字表示。这些修饰符的实际含义在预定义常量中描述。

范例

示例 #1 ReflectionMethod::getModifiers() 示例

<?php
class Testing
{
final public static function
foo()
{
return;
}
public function
bar()
{
return;
}
}

$foo = new ReflectionMethod('Testing', 'foo');

echo
"foo() 方法的修饰符:\n";
echo
$foo->getModifiers() . "\n";
echo
implode(' ', Reflection::getModifierNames($foo->getModifiers())) . "\n";

$bar = new ReflectionMethod('Testing', 'bar');

echo
"bar() 方法的修饰符:\n";
echo
$bar->getModifiers() . "\n";
echo
implode(' ', Reflection::getModifierNames($bar->getModifiers()));
?>

以上示例的输出类似于

Modifiers for method foo():
49
final public static
Modifiers for method bar():
1
public

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top