2004-09-25 09:10:50 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2004-10-29 10:37:20 +00:00
|
|
|
<!-- $Revision: 1.4 $ -->
|
2004-09-25 09:10:50 +00:00
|
|
|
<sect1 id="language.oop5.autoload">
|
|
|
|
<title>Autoloading Objects</title>
|
|
|
|
<para>
|
|
|
|
Many developers writing object-oriented applications create
|
|
|
|
one PHP source file per-class definition. One of the biggest
|
|
|
|
annoyances is having to write a long list of needed includes
|
|
|
|
at the beginning of each script (one for each class).
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
In PHP 5, this is no longer necessary. You may define an
|
|
|
|
&link.autoload; function which is automatically
|
|
|
|
called in case you are trying to use a class which hasn't been
|
|
|
|
defined yet. By calling this function the scripting engine is given
|
|
|
|
a last chance to load the class before PHP fails with an error.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title>Autoload example</title>
|
|
|
|
<para>
|
|
|
|
This example attempts to load the classes <literal>MyClass1</literal>
|
|
|
|
and <literal>MyClass2</literal> from the files <filename>MyClass1.php</filename>
|
|
|
|
and <filename>MyClass2.php</filename> respectively.
|
|
|
|
</para>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
2004-10-02 09:40:52 +00:00
|
|
|
function __autoload($class_name) {
|
2004-10-29 10:37:20 +00:00
|
|
|
require_once $class_name . '.php';
|
2004-09-25 09:10:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$obj = new MyClass1();
|
|
|
|
$obj2 = new MyClass2();
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
|
|
|
|
</sect1>
|
|
|
|
|
|
|
|
<!-- 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
|
|
|
|
-->
|