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


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


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

用法:

int ReflectionProperty::getModifiers ( void )

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


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

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

程序1:

<?php 
  
// Initializing a user-defined class Company 
class Company { 
    public $SizeOfGeeksforGeeks = 13; 
    protected $SizeOfGFG = 3; 
} 
  
// Using ReflectionProperty  
$A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks'); 
$B = new ReflectionProperty('Company', 'SizeOfGFG'); 
  
// Calling the getModifiers() function 
$C = $A->getModifiers(); 
$D = $B->getModifiers(); 
  
// Getting the numeric representation of 
// the specified modifiers. 
var_dump($C); 
var_dump($D); 
?>
输出:
int(256)
int(512)

程序2:

<?php 
  
// Initializing some user-defined classes 
class Department1 
{ 
    protected $SizeOfHR = 2; 
} 
class Department2 
{ 
    public $SizeOfCoding = 6; 
} 
class Department3 
{ 
    private $SizeOfMarketing = 9; 
} 
  
// Using ReflectionProperty over above classes 
$A = new ReflectionProperty('Department1', 'SizeOfHR'); 
$B = new ReflectionProperty('Department2', 'SizeOfCoding'); 
$C = new ReflectionProperty('Department3', 'SizeOfMarketing'); 
  
// Calling the getModifiers() function 
$D = $A->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



相关用法


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