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
Although this is not wise, it is possible.
You may save those functions in a file and prepend this file to all requested scripts:
But the wise, OOP solution would be to group those functions into classes and use __autoload or some framework autoloader like Zend_Autloader to speed things up and load just the features you need.