如果类没有具有给定名称的属性,则会引发 ReflectionException。
(PHP 5, PHP 7, PHP 8)
ReflectionClass::getProperty — 获取类的属性的 ReflectionProperty
获取类的属性的 ReflectionProperty。
name
属性名称。
示例 #1 ReflectionClass::getProperty() 的基本用法
<?php
$class = new ReflectionClass('ReflectionClass');
$property = $class->getProperty('name');
var_dump($property);
?>
以上示例将输出
object(ReflectionProperty)#2 (2) { ["name"]=> string(4) "name" ["class"]=> string(15) "ReflectionClass" }