ReflectionProperty::getName()函數是PHP中的內置函數,用於返回指定屬性的名稱。
用法:
string ReflectionProperty::getName ( void )
參數:該函數不接受任何參數。
返回值:此函數返回指定屬性的名稱。
以下示例程序旨在說明PHP中的ReflectionProperty::getName()函數:程序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 getName() function
$C = $A->getName();
$D = $B->getName();
// Getting the name of the specified property.
var_dump($C);
var_dump($D);
?>
輸出:
string(19) "SizeOfGeeksforGeeks" string(9) "SizeOfGFG"
程序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 getName() function and
// getting the name of the specified property.
var_dump($A->getName());
var_dump($B->getName());
var_dump($C->getName());
?>
輸出:
string(8) "SizeOfHR" string(12) "SizeOfCoding" string(15) "SizeOfMarketing"
參考: https://www.php.net/manual/en/reflectionproperty.getname.php
相關用法
- PHP ReflectionProperty isProtected()用法及代碼示例
- PHP ReflectionProperty isPrivate()用法及代碼示例
- PHP ReflectionProperty getModifiers()用法及代碼示例
- PHP ReflectionProperty isStatic()用法及代碼示例
- PHP ReflectionProperty isPublic()用法及代碼示例
- PHP ReflectionProperty __toString()用法及代碼示例
- PHP ReflectionProperty getDocComment()用法及代碼示例
- PHP ReflectionProperty getDeclaringClass()用法及代碼示例
- PHP ReflectionParameter getName()用法及代碼示例
- PHP DateTimeZone::getName()用法及代碼示例
- PHP ReflectionExtension getName()用法及代碼示例
- PHP SimpleXMLElement::getName()用法及代碼示例
- PHP Reflection getName()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | ReflectionProperty getName() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。