What are the differences between include() and include_once
() functions?
Answer Posted / hiren
The include_once() statement includes and evaluates the
specified file during the execution of the script. This is a
behavior similar to the include() statement, with the only
difference being that if the code from a file has already
been included, it will not be included again. As the name
suggests, it will be included just once.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is difference between put and post method in http?
Tell me how is it possible to parse a configuration file?
How can you upload a file using php?
Write a program to display reverse of any number?
Does php support inheritance?
Is false empty php?
what is difference between PHP4 , PHP5
What are the steps involved to run php?
How do you count numbers in php?
Do you know how can php and html interact?
What is the difference between require and include in php?
What is difference between echo and print in php?
How check submit button is clicked in php?
What is "print" in php?
What is difference between variable declaration and variable definition?