1 2 3 4 5 6 7 8
<?php // >= php 5.3.0 spl_autoload_register(function($class){ $dir = dirname(__FILE__); $class = str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php'; include($dir.DIRECTORY_SEPARATOR.$class); });