ReflectionMethod::getModifiers Gets the method modifiers &reftitle.description; public intReflectionMethod::getModifiers Gets the method modifiers. &reftitle.parameters; &no.function.parameters; &reftitle.returnvalues; A numeric representation of the modifiers. The modifiers are listed below. The actual meanings of these modifiers are described in the predefined constants. ReflectionMethod modifiers value constant 1 ReflectionMethod::IS_STATIC 2 ReflectionMethod::IS_ABSTRACT 4 ReflectionMethod::IS_FINAL 256 ReflectionMethod::IS_PUBLIC 512 ReflectionMethod::IS_PROTECTED 1024 ReflectionMethod::IS_PRIVATE
&reftitle.examples; <methodname>ReflectionMethod::getModifiers</methodname> 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