hassank1 Posted March 21, 2008 Share Posted March 21, 2008 hey. if I've a php file .. then I include a file that contains only functions (size e.g 50 kB ) , however I only used 1 function from the above file, so the question is , does the user must wait as if he's loading a page with 50 KB, or it doesn't really matters that much because the file is only processed on the server side !? Quote Link to comment https://forums.phpfreaks.com/topic/97212-include-functionsphp/ Share on other sites More sharing options...
Yesideez Posted March 21, 2008 Share Posted March 21, 2008 The file is only processed on the server but I imagine that the entire file is read in in order for it to find and use the function you're using. I've got a similar file on my PC containing loads of functions that I use and all I do is copy and paste the functions I use into the main include and use them there, mostly in classes. (eg. if I'm using a database I have my include to connect to the database and I put my functions there. Quote Link to comment https://forums.phpfreaks.com/topic/97212-include-functionsphp/#findComment-497404 Share on other sites More sharing options...
wildteen88 Posted March 21, 2008 Share Posted March 21, 2008 The amount of bandwidth your PHP script will use depends on what it outputs. So if you are including files which adds up to 100KB, however only 12KB of that is output then only 12KB will be used of your sites bandwidth. Quote Link to comment https://forums.phpfreaks.com/topic/97212-include-functionsphp/#findComment-497564 Share on other sites More sharing options...
cooldude832 Posted March 21, 2008 Share Posted March 21, 2008 however because it still needs to error check it having a 1gb file could be a problem for example Quote Link to comment https://forums.phpfreaks.com/topic/97212-include-functionsphp/#findComment-497594 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.