Skip to content

Instantly share code, notes, and snippets.

@gabcarvalhogama
Last active January 14, 2019 13:15
Show Gist options
  • Save gabcarvalhogama/ecce122970776d7e7074764f67a2b090 to your computer and use it in GitHub Desktop.
Save gabcarvalhogama/ecce122970776d7e7074764f67a2b090 to your computer and use it in GitHub Desktop.
Autoloading de Classes com SPL - PHP
<?php
spl_autoload_register(function($class){
if(file_exists(DIR . "/class/$class.php"))
require_once DIR . "/class/$class.php";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment