new ReflectionClass methods

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@179967 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nuno Lopes 2005-02-17 18:01:53 +00:00
parent 7557290037
commit 4c5ee78104

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.8 $ -->
<!-- $Revision: 1.9 $ -->
<sect1 id="language.oop5.reflection">
<title>Reflection</title>
<sect2 id="language.oop5.reflection.introduction">
@ -316,7 +316,9 @@ class ReflectionClass implements Reflector
public bool isInternal()
public bool isUserDefined()
public bool isInstantiable()
public bool hasConstant(string name)
public bool hasMethod(string name)
public bool hasProperty(string name)
public string getFileName()
public int getStartLine()
public int getEndLine()
@ -350,7 +352,8 @@ class ReflectionClass implements Reflector
</informalexample>
<note>
<simpara>
<function>hasMethod</function> was added in PHP 5.1.0.
<function>hasConstant</function>, <function>hasMethod</function>,
<function>hasProperty</function> were added in PHP 5.1.0.
</simpara>
</note>
<para>