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


PHP ReflectionClass getProperty()用法及代码示例


ReflectionClass::getProperty()函数是PHP中的内置函数,用于返回指定类的ReflectionProperty数组。

用法:

ReflectionClass::getProperty ( string $name ) : array

参数:此函数接受作为属性名称的参数名称。


返回值:该函数返回指定类的ReflectionProperty数组。

以下示例程序旨在说明PHP中的ReflectionClass::getProperty()函数:
示例1:

<?php 
  
// Using ReflectionClass  
$ReflectionClass = new ReflectionClass('ReflectionClass'); 
  
// Initialising a property name 
$a = 'name'; 
  
// Calling getProperty() function over  
// the property name 
$Property = $ReflectionClass->getProperty($a); 
  
// Getting an array of the ReflectionProperty 
// for the specified class. 
var_dump($Property); 
?>

输出:

object(ReflectionProperty)#2 (2) {
  ["name"]=>
  string(4) "name"
  ["class"]=>
  string(15) "ReflectionClass"
}

示例2:

<?php 
    
// Defining a class named as Company 
class Company { 
    public $C1; 
    private $C2; 
    public static $C3; 
} 
    
// Using ReflectionClass over the class Company 
$ReflectionClass = new ReflectionClass('Company'); 
    
// Calling getPropertY() function  
$A = $ReflectionClass->getProperty('C1'); 
    
// Getting an array of the reflected property 
var_dump($A); 
?>
输出:
object(ReflectionProperty)#2 (2) {
  ["name"]=>
  string(2) "C1"
  ["class"]=>
  string(7) "Company"
}

参考: https://www.php.net/manual/en/reflectionclass.getproperties.php



相关用法


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