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


PHP ReflectionMethod getModifiers()用法及代码示例


ReflectionMethod::getModifiers()函数是PHP中的内置函数,用于返回方法修饰符的数字表示形式。

用法:

int ReflectionMethod::getModifiers( void )

参数:该函数不接受任何参数。


返回值:此函数返回方法修饰符的数字表示形式。

以下示例程序旨在说明PHP中的ReflectionMethod::getModifiers()函数:
程序_1:

<?php 
  
// Initializing a user-defined class 
class Company { 
  
    protected function GeeksforGeeks($name) { 
        return 'GFG' . $name; 
    } 
} 
  
// Using ReflectionMethod() over the class Company 
$A = new ReflectionMethod(new Company(), 'GeeksforGeeks'); 
  
// Calling the getModifiers() function 
$B = $A->getModifiers(); 
  
// Getting the numeric representation  
// of the method modifiers. 
var_dump($B); 
?>

输出:

int(134283776)

程序_2:

<?php 
  
// Initializing a user-defined class 
class Department 
{ 
    final public static function Coding() 
    { 
        return; 
    } 
    public function Marketing() 
    { 
        return; 
    } 
} 
  
// Using ReflectionMethod() over the above class 
$A = new ReflectionMethod('Department', 'Coding'); 
$B = new ReflectionMethod('Department', 'Marketing'); 
  
// Calling the getModifiers() function and  
// getting the numeric representation  
// of the above method modifiers. 
var_dump($A->getModifiers()); 
var_dump($B->getModifiers()); 
?>

输出:

int(134217989)
int(134283520)

参考: https://www.php.net/manual/en/reflectionmethod.getmodifiers.php



相关用法


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