(PHP 5, PHP 7, PHP 8)
ReflectionMethod::getModifiers — 获取方法修饰符
此函数没有参数。
修饰符的数字表示。这些修饰符的实际含义在预定义常量中描述。
示例 #1 ReflectionMethod::getModifiers() 示例
<?php
class Testing
{
final public static function foo()
{
return;
}
public function bar()
{
return;
}
}
$foo = new ReflectionMethod('Testing', 'foo');
echo "Modifiers for method foo():\n";
echo $foo->getModifiers() . "\n";
echo implode(' ', Reflection::getModifierNames($foo->getModifiers())) . "\n";
$bar = new ReflectionMethod('Testing', 'bar');
echo "Modifiers for method 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