ReflectionMethod::getModifiersGets the method modifiers
&reftitle.description;
publicintReflectionMethod::getModifiers
Returns a bitfield of the access modifiers for this method.
&reftitle.parameters;
&no.function.parameters;
&reftitle.returnvalues;
A numeric representation of the modifiers.
The actual meaning of these modifiers are described under
predefined constants.
&reftitle.examples;
ReflectionMethod::getModifiers example
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()));
?>
]]>
&example.outputs.similar;
&reftitle.seealso;
Reflection::getModifierNames