i have been creating my set of functions since i started coding and i want to use these functions throughout my project in Zend Framework 1.12
i know i can place in a folder that i would create in the library, however i am looking for a different way to use my functions.
if i placed my functions in:
.../library/myfunctionsfolder/myfunctions.php
i would have to include this file in every controller when i need to use any function from this file.
However i am looking for a way that i can directly call a function from the file in any controller without having to include the file.
For example:
my_function($some_var);
Should i include this file in Zend_Controller or is it a bad idea?
How Can i do that?
Thanks for any help