mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
catch up with latest PHP 5.1
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@207463 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a08054a05e
commit
863001aa52
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.17 $ -->
|
||||
<!-- $Revision: 1.18 $ -->
|
||||
<sect1 id="language.oop5.reflection">
|
||||
<title>Reflection</title>
|
||||
<sect2 id="language.oop5.reflection.introduction">
|
||||
|
@ -246,7 +246,7 @@ class ReflectionParameter implements Reflector
|
|||
public static string export(mixed function, mixed parameter, bool return)
|
||||
public string getName()
|
||||
public bool isPassedByReference()
|
||||
public ReflectionClass getClass()
|
||||
public ReflectionClass getDeclaringClass()
|
||||
public bool isArray()
|
||||
public bool allowsNull()
|
||||
public bool isOptional()
|
||||
|
@ -350,6 +350,7 @@ class ReflectionClass implements Reflector
|
|||
public int getModifiers()
|
||||
public bool isInstance(stdclass object)
|
||||
public stdclass newInstance(mixed args)
|
||||
public stdclass newInstanceArgs(array args)
|
||||
public ReflectionClass getParentClass()
|
||||
public bool isSubclassOf(ReflectionClass class)
|
||||
public array getStaticProperties()
|
||||
|
@ -369,7 +370,8 @@ class ReflectionClass implements Reflector
|
|||
<simpara>
|
||||
<function>hasConstant</function>, <function>hasMethod</function>,
|
||||
<function>hasProperty</function>, <function>getStaticPropertyValue</function>
|
||||
and <function>setStaticPropertyValue</function> were added in PHP 5.1.0.
|
||||
and <function>setStaticPropertyValue</function> were added in PHP 5.1.0, while
|
||||
<function>newInstanceArgs</function> was added in PHP 5.1.3.
|
||||
</simpara>
|
||||
</note>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue