📜  PHP | ReflectionMethod getModifiers()函数

📅  最后修改于: 2022-05-13 01:56:48.829000             🧑  作者: Mango

PHP | ReflectionMethod getModifiers()函数

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

句法:

int ReflectionMethod::getModifiers( void )

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

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

下面的程序说明了PHP中的ReflectionMethod::getModifiers()函数
程序_1:

getModifiers();
  
// Getting the numeric representation 
// of the method modifiers.
var_dump($B);
?>

输出:

int(134283776)

程序_2:

getModifiers());
var_dump($B->getModifiers());
?>

输出:

int(134217989)
int(134283520)

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