ReflectionClass
在线手册:中文  英文

ReflectionClass::getProperty

(PHP 5)

ReflectionClass::getProperty获取类的一个属性的 ReflectionProperty

说明

public ReflectionProperty ReflectionClass::getProperty ( string $name )

获取类的一个属性的 ReflectionProperty

参数

name

属性名。

返回值

一个 ReflectionProperty

范例

Example #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"
}

参见


ReflectionClass
在线手册:中文  英文

用户评论:

eric at naeseth dot com (2011-08-02 15:38:00)

If the class doesn't have a property with the given name, a ReflectionException will be raised.

易百教程