当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Reflection getModifierNames()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | Reflection getModifierNames() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。