當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。