Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save metelica88/56b47e782066ae5ec28645e312c0f0be to your computer and use it in GitHub Desktop.

Select an option

Save metelica88/56b47e782066ae5ec28645e312c0f0be to your computer and use it in GitHub Desktop.
Автозагрузка классов index
spl_autoload_register(function($class) {
$path = str_replace('\\', '/', $class. '.php');
if (file_exists($path)) {
require $path;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment