nlopess         Fri Oct  8 14:37:05 2004 EDT

  Added files:                 
    /phpdoc/en/reference/spl/functions  class-implements.xml 
                                        class-parents.xml 
                                        spl-classes.xml 
  Log:
  add more SPL funcs
  

http://cvs.php.net/co.php/phpdoc/en/reference/spl/functions/class-implements.xml?r=1.1&p=1
Index: phpdoc/en/reference/spl/functions/class-implements.xml
+++ phpdoc/en/reference/spl/functions/class-implements.xml
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.1 $ -->
  <refentry id="function.class-implements">
   <refnamediv>
    <refname>class_implements</refname>
    <refpurpose>
     Return the classes which are implemented by the given class
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
    <methodsynopsis>
     <type>array</type><methodname>class_implements</methodname>
     <methodparam><type>object</type><parameter>class</parameter></methodparam>
    </methodsynopsis>
    <para>
     This function returns an array with the name of the classes that the
     given <parameter>class</parameter> implements.
    </para>
    <para>
     <example>
      <title><function>class_implements</function> example</title>
      <programlisting role="php">
<![CDATA[
<?php

interface foo { }
class bar implements foo {}

print_r(class_implements(new bar));

?>
]]>
      </programlisting>
      &example.outputs;
      <screen>
<![CDATA[
Array
(
    [foo] => foo
)
]]>
      </screen>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

http://cvs.php.net/co.php/phpdoc/en/reference/spl/functions/class-parents.xml?r=1.1&p=1
Index: phpdoc/en/reference/spl/functions/class-parents.xml
+++ phpdoc/en/reference/spl/functions/class-parents.xml
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.1 $ -->
  <refentry id="function.class-parents">
   <refnamediv>
    <refname>class_parents</refname>
    <refpurpose>
     Return the parent classes of the given class
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
    <methodsynopsis>
     <type>array</type><methodname>class_parents</methodname>
     <methodparam><type>object</type><parameter>class</parameter></methodparam>
    </methodsynopsis>
    <para>
     This function returns an array with the name of the parent classes of
     the given <parameter>class</parameter>.
    </para>
    <para>
     <example>
      <title><function>class_parents</function> example</title>
      <programlisting role="php">
<![CDATA[
<?php

class foo { }
class bar extends foo {}

print_r(class_parents(new bar));

?>
]]>
      </programlisting>
      &example.outputs;
      <screen>
<![CDATA[
Array
(
    [foo] => foo
)
]]>
      </screen>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

http://cvs.php.net/co.php/phpdoc/en/reference/spl/functions/spl-classes.xml?r=1.1&p=1
Index: phpdoc/en/reference/spl/functions/spl-classes.xml
+++ phpdoc/en/reference/spl/functions/spl-classes.xml
<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.1 $ -->
  <refentry id="function.spl-classes">
   <refnamediv>
    <refname>spl_classes</refname>
    <refpurpose>
     Return available SPL classes
    </refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
    <methodsynopsis>
     <type>array</type><methodname>spl_classes</methodname>
     <void/>
    </methodsynopsis>
    <para>
     This function returns an array with the current available SPL classes.
    </para>
    <para>
     <example>
      <title><function>spl_classes</function> example</title>
      <programlisting role="php">
<![CDATA[
<?php

print_r(spl_classes());

?>
]]>
      </programlisting>
      &example.outputs.similar;
      <screen>
<![CDATA[
Array
(
    [ArrayObject] => ArrayObject
    [ArrayIterator] => ArrayIterator
    [CachingIterator] => CachingIterator
    [CachingRecursiveIterator] => CachingRecursiveIterator
    [DirectoryIterator] => DirectoryIterator
    [FilterIterator] => FilterIterator
    [LimitIterator] => LimitIterator
    [ParentIterator] => ParentIterator
    [RecursiveDirectoryIterator] => RecursiveDirectoryIterator
    [RecursiveIterator] => RecursiveIterator
    [RecursiveIteratorIterator] => RecursiveIteratorIterator
    [SeekableIterator] => SeekableIterator
    [SimpleXMLIterator] => SimpleXMLIterator
)
]]>
      </screen>
     </example>
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->

Reply via email to