Is it possible to autoload functions?
What I have is I have written functions distributed over different files named after the function name, so what I need is to au
You can autoload classes, so if you make your functions static methods of classes then it will work.
abstract class Util { static function doSomething() { } }
Usage:
Util::doSomething();