2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2007-02-01 00:46:02 +00:00
|
|
|
<!-- $Revision: 1.9 $ -->
|
2007-01-14 13:37:31 +00:00
|
|
|
<refentry id="function.get-declared-classes">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>get_declared_classes</refname>
|
|
|
|
<refpurpose>Returns an array with the name of the defined classes</refpurpose>
|
|
|
|
</refnamediv>
|
2007-01-14 15:10:19 +00:00
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2007-01-14 13:37:31 +00:00
|
|
|
<methodsynopsis>
|
|
|
|
<type>array</type><methodname>get_declared_classes</methodname>
|
|
|
|
<void/>
|
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
2007-01-14 15:10:19 +00:00
|
|
|
Gets the declared classes.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
|
|
|
Returns an array of the names of the declared classes in the current
|
|
|
|
script.
|
2007-01-14 13:37:31 +00:00
|
|
|
</para>
|
|
|
|
<note>
|
|
|
|
<para>
|
2007-02-01 00:46:02 +00:00
|
|
|
In PHP 4.0.1, three extra classes are returned at the beginning of
|
2007-01-14 13:37:31 +00:00
|
|
|
the array: <classname>stdClass</classname> (defined in
|
|
|
|
<filename>Zend/zend.c</filename>),
|
|
|
|
<classname>OverloadedTestClass</classname> (defined in
|
|
|
|
<filename>ext/standard/basic_functions.c</filename>)
|
|
|
|
and <classname>Directory</classname>
|
|
|
|
(defined in <filename>ext/standard/dir.c</filename>).
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
Also note that depending on what libraries you have compiled
|
|
|
|
into PHP, additional classes could be present. This means that
|
|
|
|
you will not be able to define your own classes using these
|
|
|
|
names. There is a list of predefined classes in the <link
|
|
|
|
linkend="reserved.classes">Predefined Classes</link> section of
|
|
|
|
the appendices.
|
|
|
|
</para>
|
|
|
|
</note>
|
2007-01-14 15:10:19 +00:00
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
2007-01-14 13:37:31 +00:00
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title><function>get_declared_classes</function> example</title>
|
|
|
|
<programlisting role="php">
|
2004-05-06 15:25:58 +00:00
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
print_r(get_declared_classes());
|
|
|
|
?>
|
|
|
|
]]>
|
2007-01-14 13:37:31 +00:00
|
|
|
</programlisting>
|
|
|
|
&example.outputs.similar;
|
|
|
|
<screen>
|
2004-05-06 15:25:58 +00:00
|
|
|
<![CDATA[
|
|
|
|
Array
|
|
|
|
(
|
|
|
|
[0] => stdClass
|
|
|
|
[1] => __PHP_Incomplete_Class
|
|
|
|
[2] => Directory
|
|
|
|
)
|
|
|
|
]]>
|
2007-01-14 13:37:31 +00:00
|
|
|
</screen>
|
|
|
|
</example>
|
|
|
|
</para>
|
2007-01-14 15:10:19 +00:00
|
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
|
|
&reftitle.seealso;
|
|
|
|
<para>
|
|
|
|
<simplelist>
|
|
|
|
<member><function>class_exists</function></member>
|
|
|
|
<member><function>get_declared_interfaces</function></member>
|
|
|
|
</simplelist>
|
|
|
|
</para>
|
2007-01-14 13:37:31 +00:00
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
2002-04-15 00:12:54 +00:00
|
|
|
|
|
|
|
<!-- 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
|
|
|
|
-->
|