Skip to content

Instantly share code, notes, and snippets.

@nbomberger
Forked from adriengibrat/l.php
Last active December 16, 2015 18:08
Show Gist options
  • Save nbomberger/5475091 to your computer and use it in GitHub Desktop.
Save nbomberger/5475091 to your computer and use it in GitHub Desktop.
PSR-0 Compliant autoloader.
/**
* Small PSR-0 compliant autloader
*/
<?php
set_include_path(get_include_path().PATH_SEPARATOR.__DIR__);
spl_autoload_register(
function ($c) {
@include preg_replace('#\\\|_(?!.*\\\)#','/',$c).'.php';
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment