Skip to content

Instantly share code, notes, and snippets.

@antonioanerao
Created July 1, 2017 22:25
Show Gist options
  • Save antonioanerao/046759d4e4369e5f83c3285d8064ab7c to your computer and use it in GitHub Desktop.
Save antonioanerao/046759d4e4369e5f83c3285d8064ab7c to your computer and use it in GitHub Desktop.
simple autoload
<?php
spl_autoload_register(function($nameClass)
{
$dirName = "classes";
$filename = $dirName . DIRECTORY_SEPARATOR . $nameClass . ".class.php";
if(file_exists($filename))
{
require_once($filename);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment