PHP ReflectionProperty::getName 反射函数
-
定义和用法
ReflectionProperty::getName - 获取属性名称 -
版本支持
PHP4 PHP5 PHP7 不支持 支持 支持 -
语法
ReflectionProperty::getName( void )
ReflectionProperty::getName() 获取属性名称 -
参数
参数 必需的 描述 无 -
返回值
反射的属性的名称。 -
示例
尝试一下class Str { /** * @var int The length of the string */ public $length = 5; } $prop = new ReflectionProperty('Str', 'length'); var_dump($prop->getName());
-
相关页面
ReflectionProperty::getValue() - 获取值