Skip to content

Instantly share code, notes, and snippets.

@iconte
Created May 13, 2023 17:56
Show Gist options
  • Save iconte/b8868df56d97701a5811fb3cab9bc277 to your computer and use it in GitHub Desktop.
Save iconte/b8868df56d97701a5811fb3cab9bc277 to your computer and use it in GitHub Desktop.
autoload exemplo
spl_autoload_register(
function (string $namespaceClasse): void {
$caminho = “/src”;
$diretorio_classe = str_replace("\\", DIRECTORY_SEPARATOR, $namespaceClasse);
@include_once getcwd() . $caminho . DIRECTORY_SEPARATOR . "{$diretorio_classe}.php";
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment