We've expanded our news coverage and improved our search! Visit news.oreilly.com for the latest or search for all things across O'Reilly!
advertisement

Article:
  Object Overloading in PHP 5
Subject:   function __autoload()
Date:   2006-07-24 23:48:41
From:   abc@yahoo.com
how does this code works
<?php
function __autoload($class_name) {
require_once $class_name . '.php';
}


$obj = new MyClass1();
$obj2 = new MyClass2();
?>