Wednesday, August 17, 2011

__autoload() in php 5


When writing object-oriented code, it is often customary to put each class in its
own source file. The advantage of this is that it’s much easier to find where a
class is placed, and it also minimizes the amount of code that needs to be
included because you only include exactly the classes you need. The downside
is that you often have to include tons and tons of source files, which can be a
pain, often leading to including too many files and a code-maintenance headache.
__autoload() solves this problem by not requiring you to include classes
you are about to use. If an __autoload() function is defined (only one such function
can exist per application) and you access a class that hasn’t been defined,
it will be called with the class name as a parameter. This gives you a chance to
include the class just in time. If you successfully include the class, your source
code continues executing as if the class had been defined. If you don’t successfully
include the class, the scripting engine raises a fatal error about the class
not existing.
Here’s a typical example using __autoload():
MyClass.php:
<?php
class MyClass {
function printHelloWorld()
{
print "Hello, World\n";
}
}
?>
general.inc:
<?php
function __autoload($class_name)
{
require_once($_SERVER["DOCUMENT_ROOT"] . "/classes/
➥$class_name.php");
}
?>
main.php:
<?php
require_once "general.inc";
$obj = new MyClass();
$obj->printHelloWorld();
?>


source PHP 5 Power Programming
Andi Gutmans, Stig Sæther Bakken,
and Derick Rethans

No comments:

MS in Computer Science with paid training in USA company