Autoloader

PHOTO EMBED

Mon Dec 16 2024 01:26:28 GMT+0000 (Coordinated Universal Time)

Saved by @Joe_Devs #php

/*
*autoloader makes it so that we dont have to requre 
*
*/

spl_autoload_register(function ($class){
   $path = basePath('Framework/' . $class . '.php');
   if (file_exists($path)){
       require $path;
   }
});


// basepath 
function basePath($path = '')
{
    return __DIR__ . '/' . $path;
}
content_copyCOPY

Simple PHP autoloader