* @link http://flc.ren */ spl_autoload_register(function ($classname) { $baseDir = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'Alidayu' . DIRECTORY_SEPARATOR; if (strpos($classname, "Flc\\Alidayu\\") === 0) { $path = str_replace('\\', DIRECTORY_SEPARATOR, substr($classname, strlen('Flc\\Alidayu\\'))); $file = $baseDir . $path . '.php'; if (is_file($file)) require_once $file; } });