add [gs]etStaticPropertyValue methods

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@190636 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nuno Lopes 2005-07-13 18:30:22 +00:00
parent f4618fa166
commit 4ba0892da9

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.13 $ -->
<!-- $Revision: 1.14 $ -->
<sect1 id="language.oop5.reflection">
<title>Reflection</title>
<sect2 id="language.oop5.reflection.introduction">
@ -344,6 +344,8 @@ class ReflectionClass implements Reflector
public ReflectionClass getParentClass()
public bool isSubclassOf(ReflectionClass class)
public array getStaticProperties()
public mixed getStaticPropertyValue(string name [, mixed default])
public void setStaticPropertyValue(string name, mixed value)
public array getDefaultProperties()
public bool isIterateable()
public bool implementsInterface(string name)
@ -357,7 +359,8 @@ class ReflectionClass implements Reflector
<note>
<simpara>
<function>hasConstant</function>, <function>hasMethod</function>,
<function>hasProperty</function> were added in PHP 5.1.0.
<function>hasProperty</function>, <function>getStaticPropertyValue</function>
and <function>setStaticPropertyValue</function> were added in PHP 5.1.0.
</simpara>
</note>
<para>