array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'reflectionmethod.getmodifiers.php', 1 => 'ReflectionMethod::getModifiers', 2 => 'Gets the method modifiers', ), 'up' => array ( 0 => 'class.reflectionmethod.php', 1 => 'ReflectionMethod', ), 'prev' => array ( 0 => 'reflectionmethod.getdeclaringclass.php', 1 => 'ReflectionMethod::getDeclaringClass', ), 'next' => array ( 0 => 'reflectionmethod.getprototype.php', 1 => 'ReflectionMethod::getPrototype', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/reflection/reflectionmethod/getmodifiers.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5, PHP 7, PHP 8)
ReflectionMethod::getModifiers — Gets the method modifiers
Returns a bitfield of the access modifiers for this method.
У цієї функції немає параметрів.
A numeric representation of the modifiers. The actual meaning of these modifiers are described under predefined constants.
Приклад #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(): 49 final public static Modifiers for method bar(): 1 public