Hi, I have some custom functions that I use in different parts of my application.
What is the best practice of using these functions? The functions are focused on different aims. for example: > randomString(), > safeFileRename() , > encrypt_decrypt() , > bytesToMbs(), etc. > Which one you think is better? - Putting them into library and including where needed - Using autoloader of zend - Or something else
