ReflectionMethod::getModifiers
PHP function
Edit on GitHub ✎
(PHP 5, PHP 7, PHP 8)
Gets the method modifiers
Description
ReflectionMethod::getModifiers(): int
Returns a bitfield of the access modifiers for this method.
Parameters Parameters
Return Values
A numeric representation of the modifiers. The actual meaning of these modifiers are described under predefined constants.
Examples
ReflectionMethod::getModifiers example
php
<?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()));
?>The above example will output something similar to:
output
Modifiers for method foo():
49
final public static
Modifiers for method bar():
1
publicSee Also
Reflection::getModifierNames