Skip to content

Instantly share code, notes, and snippets.

@tbarbugli
Created October 8, 2014 07:17
Show Gist options
  • Save tbarbugli/57061c7fc7ed554a5c48 to your computer and use it in GitHub Desktop.
Save tbarbugli/57061c7fc7ed554a5c48 to your computer and use it in GitHub Desktop.
autoload.php
function autoload($className)
{
$className = ltrim($className, '\\');
$fileName = '';
$namespace = '';
if ($lastNsPos = strrpos($className, '\\')) {
$namespace = substr($className, 0, $lastNsPos);
$className = substr($className, $lastNsPos + 1);
$fileName = str_replace('\\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR;
}
$fileName .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
require $fileName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment