ReflectionMethod::getModifiers

(PHP 5, PHP 7)

ReflectionMethod::getModifiers��ȡ���������η�

˵��

public ReflectionMethod::getModifiers ( void ) : int

����һ�����������η�������ֵ��һ��λ��

����

�˺���û�в�����

����ֵ

ʹ��һ�����ֱ�ʾ�������η����������ֵĺ�����Բο� predefined constants �е�˵����

����

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

�������̵���������ڣ�

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

�μ�