ReflectionClass
在线手册:中文  英文

ReflectionClass::setStaticPropertyValue

(PHP 5 >= 5.1.0)

ReflectionClass::setStaticPropertyValue设置静态属性的值

说明

public void ReflectionClass::setStaticPropertyValue ( string $name , string $value )

设置静态属性的值。

Warning

本函数还未编写文档,仅有参数列表。

参数

name

属性的名称。

value

属性的值。

返回值

没有返回值。

参见


ReflectionClass
在线手册:中文  英文

用户评论:

chuck at manchuck dot com (2012-07-13 13:40:04)

It is important to note that calling ReflectionClass::setStaticPropertyValue will not allow you to add new static properties to a class.

易百教程