0
I have a project that uses autoload to load several libraries, Helpers, using several include_once. As Inputs, Forms etc.
Some are used on multiple controllers, others not so much. Would it be good practice to load all on autoload or is it better to load on demand? Would you overload the server if this is done on autoload? Thank you very much!
My tip: use the function
spl_autoload_register
– Valdeir Psr