當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。