mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 10:28:54 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@100454 c90b9560-bf6c-de11-be94-00142212c4b1
63 lines
2 KiB
XML
63 lines
2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.3 $ -->
|
|
<!-- splitted from ./en/functions/classobj.xml, last change in rev 1.11 -->
|
|
<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>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>get_declared_classes</methodname>
|
|
<void/>
|
|
</methodsynopsis>
|
|
<para>
|
|
This function returns an array of the names of the declared classes
|
|
in the current script.
|
|
</para>
|
|
<note>
|
|
<para>
|
|
In PHP 4.0.1pl2, three extra classes are returned at the beginning of
|
|
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>
|
|
<simpara>
|
|
See also <function>class_exists</function>.
|
|
</simpara>
|
|
</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
|
|
-->
|