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 |
what is the difference between GET,POST and REQUEST in php
What are arguments in php?
Please explain is it possible to use com component in php?
Is php still relevant 2019?
In PHP, fgets() is used to read a file one line at a time. State Whether True or False?
Name the Functions in IMAP, POP3 AND LDAP?
What is difference between isset and empty in php?
How we can convert dynamic url into static url? plz provide code.
How I use global variable in another page without using $_GET method?
Which function Returns the time of sunrise for a given day / location in PHP.
How can post form values with out press submit button
Is PHP an open source software?