downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionMethod::getPrototype> <ReflectionMethod::getDeclaringClass
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionMethod::getModifiers

(PHP 5)

ReflectionMethod::getModifiersGets the method modifiers

Beschreibung

public int ReflectionMethod::getModifiers ( void )

Returns a bitfield of the access modifiers for this method.

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.

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
public

Siehe auch



add a note add a note User Contributed Notes ReflectionMethod::getModifiers - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites