Automatically Loading Include Files with ___autoload() : __autoload « Class « PHP
- PHP
- Class
- __autoload
Automatically Loading Include Files with ___autoload()
<?php
function ___autoload ($class) {
$file = "$class.inc.php";
include_once( $file );
}
$test = new YourClassName();
?>
Related examples in the same category