Skip to content

Instantly share code, notes, and snippets.

@alex-cory
Last active August 29, 2015 13:56
Show Gist options
  • Save alex-cory/8996190 to your computer and use it in GitHub Desktop.
Save alex-cory/8996190 to your computer and use it in GitHub Desktop.
Example autoloader. #snippet
function autoloader($class)
{
include_once 'classes/' . strtolower($class) . '.php';
}
spl_autoload_register(autoloader);
// http://goo.gl/8xmrcx
// http://goo.gl/bHXxrX
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment