(PHP 5, PHP 7)
ReflectionMethod::getModifiers — 锟斤拷取锟斤拷锟斤拷锟斤拷锟斤拷锟轿凤拷
锟斤拷锟斤拷一锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟轿凤拷锟斤拷锟斤拷锟斤拷值锟斤拷一锟斤拷位锟斤拷
锟剿猴拷锟斤拷没锟叫诧拷锟斤拷锟斤拷
使锟斤拷一锟斤拷锟斤拷锟街憋拷示锟斤拷锟斤拷锟斤拷锟轿凤拷锟斤拷锟斤拷锟斤拷锟斤拷锟街的猴拷锟斤拷锟斤拷圆慰锟� 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