PHP Doku:: Gets the method modifiers - reflectionmethod.getmodifiers.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzVariablen- und typbezogene ErweiterungenReflectionThe ReflectionMethod classReflectionMethod::getModifiers

Ein Service von Reinhard Neidl - Webprogrammierung.

The ReflectionMethod class

<<ReflectionMethod::getDeclaringClass

ReflectionMethod::getPrototype>>

ReflectionMethod::getModifiers

(PHP 5)

ReflectionMethod::getModifiersGets the method modifiers

Beschreibung

public int ReflectionMethod::getModifiers ( void )

Gets the method modifiers.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

A numeric representation of the modifiers. The modifiers are listed below. The actual meanings of these modifiers are described in the predefined constants.
ReflectionMethod modifiers
value constant
1 ReflectionMethod::IS_STATIC
2 ReflectionMethod::IS_ABSTRACT
4 ReflectionMethod::IS_FINAL
256 ReflectionMethod::IS_PUBLIC
512 ReflectionMethod::IS_PROTECTED
1024 ReflectionMethod::IS_PRIVATE

Beispiele

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)