ReflectionMethod
PHP Manual

ReflectionMethod::getModifiers

(PHP 5)

ReflectionMethod::getModifiersGets modifiers

説明

public int ReflectionMethod::getModifiers ( void )

Gets the modifiers.

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

この関数にはパラメータはありません。

返り値

A numeric representation of the modifiers.

例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()));
?>

上の例の出力は、 たとえば以下のようになります。

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

参考


ReflectionMethod
PHP Manual