Jump to content

Includes


johnnyk

Recommended Posts

I usually keep a file of functions that I regularly use. I include this file on every page. Obviously, not every function is used on every page. Is it bad to include all the functions, considering maybe only 2/5 will be used on any given page. Does it slow down the loading of the page or anything?
Link to comment
Share on other sites

Yes it will slow down the server some because of the extra script it has to read. But it shouldn't slow it down much if your include file is small. I don't know exactly how much it would slow it down. You would need to run a benchmark on your server to see exactly how much it does slow it down. Just guessing, an include file under 100Kb should be no problem.
Link to comment
Share on other sites

You probably wont even notice the difference if the file you was including was 10Kb, 100Kb or 1000Kb in size you'll see very little perfomance drop.

It most probably increase your page load by 0.01 secounds or even less. PHP is very fast at processing. You can test how long it may take by doing a quick time trial like so:
[code]<?php

$starttime = microtime();
$startarray = explode(" ", $starttime);
$starttime = $startarray[1] + $startarray[0];

include 'filename.php';

$endtime = microtime();
$endarray = explode(" ", $endtime);
$endtime = $endarray[1] + $endarray[0];
$totaltime = round($endtime - $starttime, 6);

echo '<br /><br />This page loaded in ' . $totaltime . ' seconds';

?>[/code]
The bit that take PHP tine will be how long it takes for PHP to run your function.
Link to comment
Share on other sites

It's generally good practice to include stuff like that on every script as it means if you have to change something, you only need to change one file rather than every file that relies on whatever you're changing.
Link to comment
Share on other sites

If you are not using the ZEND php system and the php has then to recompile every time the page is called, then adding a lot of unneeded functions at the beginning of every page might slow down the page quite a bit. It has been my experience that if you have a php page of any complexity at all, that it takes longer for the server to compile the page then it will then take to execute it! I have found that if you move your php code from a non ZEND system to the ZEND php system, you can expect around a 1.5 to 2 second speedup of your pages! (ZEND rocks!) I in no way work for ZEND.

If you are currently using the ZEND php system, then adding the extra php functions to the beginning of every page should not slow it down because if the functions were already compiled earlier but are not executed in the current page, then they will not slow it down significantly.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.