Skip to content

Instantly share code, notes, and snippets.

@mbernson
Created October 25, 2011 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbernson/1312816 to your computer and use it in GitHub Desktop.
Save mbernson/1312816 to your computer and use it in GitHub Desktop.
MB autoload
<?php
/*
* Autoloader
*/
function mb_autoload($class_name)
{
require_once('classes/'.$class_name.'.class.php');
}
spl_autoload_register('mb_autoload');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment