What are the differences between include() and include_once
() functions?
Answer Posted / anjan
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 ? | 23 Yes | 9 No |
Post New Answer View All Answers
What good is polymorphism?
How to turn on the session support?
What is the function in PHP do not return a timestamp?
Explain php parameterized functions.
Explain how is it possible to set an infinite execution time for php script?
Is age interval or ordinal?
Explain php explode() function.
How to execute a php script from the command line?
What is difference between web service and api?
How to access a Static Member of a Class in PHP?
How to execute a function in php?
How do you define a constant in php?
What is difference between static and constant?
Explain how is it possible to cast types in php?
Are sessions stateless?