(PHP 5, PHP 7, PHP 8)
ReflectionClass::getProperty — 獲取類的一個(gè)屬性的 ReflectionProperty
獲取類的一個(gè)屬性的 ReflectionProperty。
name
屬性名。
一個(gè) ReflectionProperty。
示例 #1 ReflectionClass::getProperty() 的基本用法
<?php
$class = new ReflectionClass('ReflectionClass');
$property = $class->getProperty('name');
var_dump($property);
?>
以上例程會(huì)輸出:
object(ReflectionProperty)#2 (2) { ["name"]=> string(4) "name" ["class"]=> string(15) "ReflectionClass" }