Reflection::getModifierNames()函数是PHP中的内置函数,用于返回指定修饰符名称的数组。
用法:
array Reflection::getModifierNames( int $modifiers )
参数:此函数接受单个参数$modifiers,它是修饰符的Bitfield。此处,位域是一种数据结构,由多个相邻的计算机存储位置组成。
返回值:此函数返回指定修饰符名称的数组。
以下示例程序旨在说明PHP中的Reflection::getModifierNames()函数:
程序1:
<?php
// Declaring a class Testing
class Testing
{
// Calling a function GeeksforGeeks() with
// two modifier named as public and static
public static function GeeksforGeeks()
{
return;
}
}
// ReflectionMethod is called on the class Testing and
// their member as funtion GeeksforGeeks()
$GeeksforGeeks = new ReflectionMethod('Testing', 'GeeksforGeeks');
// Calling the getModifierNames() function and printing
// an array of modifier names
echo implode(' ', Reflection::getModifierNames($GeeksforGeeks->getModifiers()));
?>
输出:
public static
程序2:
<?php
// Declaring a class Testing
class Testing
{
// Calling a function GFG() with
// two modifier named as public and static
final public function GFG()
{
return;
}
}
// ReflectionMethod is called on the class Testing and
// their member as funtion GFG()
$GFG = new ReflectionMethod('Testing', 'GFG');
// Calling the getModifierNames() function and printing
// an array of modifier names
echo implode(' ', Reflection::getModifierNames($GFG->getModifiers()));
?>
输出:
final public
参考: https://www.php.net/manual/en/reflection.getmodifiernames.php
相关用法
- PHP Reflection getModifiers()用法及代码示例
- PHP Reflection getShortName()用法及代码示例
- PHP Reflection getName()用法及代码示例
- PHP Reflection getNamespaceName()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP pow( )用法及代码示例
- d3.js d3.rgb()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- CSS var()用法及代码示例
- p5.js second()用法及代码示例
- PHP pi( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | Reflection getModifierNames() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。