Skip to content

Instantly share code, notes, and snippets.

@sitedata
Forked from adriengibrat/l.php
Created October 28, 2023 01:30
Show Gist options
  • Save sitedata/95dec30b2cc2301b5efecd4a4471889a to your computer and use it in GitHub Desktop.
Save sitedata/95dec30b2cc2301b5efecd4a4471889a to your computer and use it in GitHub Desktop.
Extreme minification of shortest possible PSR-0 compliant autoloader, 5 lines !
<?php
//set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__); // optional
spl_autoload_register(function ($class) {
$file = preg_replace('#\\\|_(?!.+\\\)#','/', $class) . '.php';
if (stream_resolve_include_path($file))
require $file;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment