mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
7557290037
commit
4c5ee78104
1 changed files with 5 additions and 2 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue