What is the difference between include and include_once ?
Which is one is good in terms of performance ?
Answers were Sorted based on User's Feedback
u may include a single file several times by using
include() but by using include_once() its ensured tht the
specific file would be included only once no matter how
many times u wrote it ;)
-Abhishek Dilliwal
http://abhishek.x10hosting.com
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / ankit
By Using include() function we can include a file any
number of times.But if you will face a Fatal error that is
a connect() or any function can not be redeclared then just
use include_once(), it will include that file only once,
then it doesn't matter how many times u include that
file. :)
| Is This Answer Correct ? | 5 Yes | 3 No |
How does header() work . What do they tell the server same question for SESSIONS
What is the difference between pop3 IMAP and MAPI?
Which Scripting Engine PHP uses?
Explain how is it possible to set an infinite execution time for php script?
Can php run without server?
How to set a page as a home page in a php based site?
Give any ten basic functions in PHP?
What is the difference between htmlentities and htmlspecialchars in php?
Explain Creating and Naming an Array?
What is stripslashes php?
Explain what are psrs?
Can php variables have numbers?