I'm wondering if it's efficient processing wise to have large includes files attached to pages. For example, I have this php include file that it all it has are custom string functions. Now, some pages in my apps use most of these functions, while others use only a few, and some use just one. For the pages that use only a few of these functions of this include file, is it worth including that include file? Is it better to just copy that function needed from the include file and put it in the page and don't include the file?
Wondering what you guys think is best. By the way, these string functions are related, so I don't want to split them apart. There's still quite a few of them, and I'm worried about processing time.
Thanks!