If I add PHP includes to a page.

include('example.php')
- It then has to load that file which would / could slow down load time correct? Right now I am making unnecessary redirects back to the a login page if the logins are wrong via javascript snippet that is inside my login.php page (which does all the login checking against the database). So in the address bar it shows "admin.php > login.php > admin.php" , but I don't ever want to show what file it is going to in order to test the logins, but I also do not want to include this inside admin.php because I'm afraid it might affect load time.

If you understand my question then suggestions would be helpful.

link|improve this question

1  
Using an opcode cache like APC reduces the overhead of include() – Frank Farmer Aug 15 '11 at 21:18
:S I'm not sure I understand – Howdy_McGee Aug 15 '11 at 21:23
1  
apc is a caching addon you can install via pecl that does a couple of different things, one of which is to parse scripts into the php opcodes and store the cached script in shared memory. – gview Aug 15 '11 at 21:28
feedback

2 Answers

up vote 1 down vote accepted

New HTTP requests (redirects) are always a bigger performance hit than includes, so there's no reason to use redirects (especially Javascript ones) if you're only concerned about the performance. So if I understand you I'd like to suggest that you just include the file.

link|improve this answer
Gotcha, but what if the include is a bigger file, and do I need to worry about security issues via includes (such as making databse connections). Performance and Security are my biggest concerns. Having both seems to be fairly difficult :( – Howdy_McGee Aug 15 '11 at 21:22
Big files are no problem for includes either. You have to think of it this way: when you include a file the code in the file is executed by the server and then appended to the HTTP request. When you separately call the file in a new request, the code is not only executed, but also a new request has to be created and the server has to route the request to the correct script. So it's no problem for bigger files either, using a separate request takes longer. – Frog Aug 15 '11 at 21:29
The same counts for security: you're essentially executing the same code, so if there's a vulnerability in the script it can be used either way. The only difference might be that by using a separate HTTP request the user can see more about how your site works, so in this case the include is also better. I have to say though that you shouldn't rely on this, since security through obscurity is just bad. – Frog Aug 15 '11 at 21:29
Finally, the only reason to use a separate request is, as JB Nizet pointed out below: readability and maintainability. If it's really easier for you, you should by all means use it, although I can't think of a situation where it is. – Frog Aug 15 '11 at 21:29
The main reason why I have my PHP in a seperate file (processing.php) is so I can wrap it around a (if($_POST)), which I wasn't sure I could do if I put it inside an include. – Howdy_McGee Aug 15 '11 at 21:37
show 1 more comment
feedback

Do what you feel is best in terms of readability and maintainability at server-side. Then, if you have a performance problem, find where it comes from by measuring (and not guessing), and try to optimize.

You're optimizing prematurely, and this is the root of all evil. Compared to the time it takes to a HTTP request/response to execute, including some additional lines of PHP is very certainly negligible.

link|improve this answer
Well it's not all about optimization, When I do not include - the address bar shows the "processing.php" before it actually redirects depending on the outcome. I do not want to show where the processing takes place but on the other hand I do not want to include a giant processing file, because then theoretically it would have to load "incude('processing.php') before it loads any HTML which would weigh on performance. – Howdy_McGee Aug 15 '11 at 21:25
1  
Why is your processing.php so huge? If it's because it contains many functions, then don't worry too much: PHP will only interpret the ones it needs to. As I said: architect your application so that it's readable and maintainable. Don't presuppose that you'll have a performance problem. There are pretty good chances that you're won't have any. – JB Nizet Aug 15 '11 at 21:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.