Skip to content

Instantly share code, notes, and snippets.

@cam-gists
Created July 2, 2012 19:39
Show Gist options
  • Save cam-gists/3035211 to your computer and use it in GitHub Desktop.
Save cam-gists/3035211 to your computer and use it in GitHub Desktop.
PHP: Auto Load Classes
<?php
spl_autoload_register(function ($classname) {
$classname = ltrim($classname, "\\");
preg_match('/^(.+)?([^\\\\]+)$/U', $classname, $match);
$classname = str_replace("\\", "/", $match[1])
. str_replace(["\\", "_"], "/", $match[2])
. ".php";
include_once $classname;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment