Skip to content

Instantly share code, notes, and snippets.

@nicoxxxcox
Last active April 23, 2019 09:34
Show Gist options
  • Save nicoxxxcox/7c0bb22a5b827a86ae267b1fb6b8a3f2 to your computer and use it in GitHub Desktop.
Save nicoxxxcox/7c0bb22a5b827a86ae267b1fb6b8a3f2 to your computer and use it in GitHub Desktop.
Autoloader verry simple - PHP
<?php
class Autoloader
{
static function register()
{
spl_autoload_register(array(__CLASS__, 'autoload'));
}
static function autoload($class_name)
{
require 'class/' . $class_name . '.class.php';
}
}
<?php
require './class/Autoloader.class.php';
Autoloader::register;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment