W3cubDocs

/PHP

ReflectionMethod::getModifiers

(PHP 5, PHP 7)

ReflectionMethod::getModifiersGets the method modifiers

Description

public ReflectionMethod::getModifiers ( ) : int

Returns a bitfield of the access modifiers for this method.

Parameters

This function has no parameters.

Return Values

A numeric representation of the modifiers. The modifiers are listed below. The actual meanings of these modifiers are described in the predefined constants.

Examples

Example #1 ReflectionMethod::getModifiers() example

<?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:

Modifiers for method foo():
261
final public static
Modifiers for method bar():
65792
public

See Also

© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/reflectionmethod.getmodifiers.php