📜  PHP | ReflectionProperty getModifiers()函数

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

PHP | ReflectionProperty getModifiers()函数

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

句法:

int ReflectionProperty::getModifiers ( void )

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

返回值:此函数返回指定修饰符的数字表示。

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

方案一:

getModifiers();
$D = $B->getModifiers();
  
// Getting the numeric representation of
// the specified modifiers.
var_dump($C);
var_dump($D);
?>
输出:
int(256)
int(512)

方案二:

getModifiers();
$E = $B->getModifiers();
$F = $C->getModifiers();
  
// Getting the numeric representation
// of the specified modifiers.
var_dump($D);
var_dump($E);
var_dump($F);
?>

输出:

int(512)
int(256)
int(1024)

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