php-doc-en/reference/spl/functions/class-implements.xml

69 lines
1.5 KiB
XML
Raw Normal View History

<?xml version='1.0' encoding='iso-8859-1'?>
<!-- $Revision: 1.2 $ -->
<refentry id="function.class-implements">
<refnamediv>
<refname>class_implements</refname>
<refpurpose>
Return the interfaces 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 interfaces 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
-->