Skip to content

Instantly share code, notes, and snippets.

@tieutantan
Created December 3, 2017 20:23
Show Gist options
  • Save tieutantan/949fded768ca9cf8683dd2a9d0558cd8 to your computer and use it in GitHub Desktop.
Save tieutantan/949fded768ca9cf8683dd2a9d0558cd8 to your computer and use it in GitHub Desktop.
PHP Autoload Class
<?php
spl_autoload_register(function ($class) {
include_once 'core' . DS . strtolower($class) . '.php';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment