mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Document Reflector (bug #41573)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@241387 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
d3992aa101
commit
b966b0342e
1 changed files with 22 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.24 $ -->
|
||||
<!-- $Revision: 1.25 $ -->
|
||||
<sect1 xml:id="language.oop5.reflection" xmlns="http://docbook.org/ns/docbook">
|
||||
<title>Reflection</title>
|
||||
<sect2 xml:id="language.oop5.reflection.introduction">
|
||||
|
@ -111,6 +111,27 @@ Class [ <internal> class Exception ] {
|
|||
</para>
|
||||
</sect2>
|
||||
|
||||
<sect2 xml:id="language.oop5.reflection.reflector">
|
||||
<title><classname>Reflector</classname></title>
|
||||
<para>
|
||||
<classname>Reflector</classname> is an interface implemented by all
|
||||
exportable Reflection classes.
|
||||
</para>
|
||||
<informalexample>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
interface Reflector
|
||||
{
|
||||
public string __toString()
|
||||
public static string export()
|
||||
}
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</informalexample>
|
||||
</sect2>
|
||||
|
||||
<sect2 xml:id="language.oop5.reflection.reflectionexception">
|
||||
<title><classname>ReflectionException</classname></title>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue