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
相關用法
- PHP ReflectionProperty getModifiers()用法及代碼示例
- PHP Reflection getModifiers()用法及代碼示例
- PHP ReflectionMethod isPrivate()用法及代碼示例
- PHP ReflectionMethod isFinal()用法及代碼示例
- PHP ReflectionMethod isAbstract()用法及代碼示例
- PHP ReflectionMethod invokeArgs()用法及代碼示例
- PHP ReflectionMethod isProtected()用法及代碼示例
- PHP ReflectionMethod export()用法及代碼示例
- PHP ReflectionMethod getClosure()用法及代碼示例
- PHP ReflectionMethod getDeclaringClass()用法及代碼示例
- PHP ReflectionMethod __toString()用法及代碼示例
- PHP ReflectionMethod invoke()用法及代碼示例
- PHP ReflectionMethod isStatic()用法及代碼示例
- PHP ReflectionMethod isPublic()用法及代碼示例
- PHP ReflectionMethod isConstructor()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | ReflectionMethod getModifiers() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。