No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

Reflection::getModifierNames

(PHP 5, PHP 7)

Reflection::getModifierNamesGets modifier names

Description

public static Reflection::getModifierNames ( int $modifiers ) : array

Gets modifier names.

PHP: Reflection::getModifierNames - Manual Home of Manuel PHP  Contents Haut

Parameters

modifiers

Bitfield of the modifiers to get.

PHP: Reflection::getModifierNames - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 Reflection::getModifierNames() 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()));

The above example will output something similar to:

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

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph