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
How to pass an argument to a function?
Declare a new variable in php equal to the number 3;
Can I write php code in html file?
What is the functionality of the functions strstr() and stristr()?
What is the Default syntax used in PHP?
Write a php script to get the largest key in an array?
What does empty mean in php?
Is nan in javascript?
Why do we use htaccess
How to call javascript function in php without any event?
What is isset in php?
How to create connection in php?
What is memcache?
What is empty () in php?
Explain the types of functions for Splitting String?