What are the differences between require and include,
include_once?
Answer Posted / ashwini
All three include(),include_once() and require() are used to
an include file into the current page.
If the file is not present, require(), calls a fatal error,
while in include() does not.
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. It does not
call a fatal error if file not exists. require_once() does
the same as include_once(), but it calls a fatal error if
file not exists.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is api laravel?
What is $_ get?
Why do we use interface in php?
What is a class in php programing?
What is good average session duration?
What is faster in php?
How to remove leading and trailing spaces from user input values in php?
How do I install php?
What does echo mean in php?
What is == and === in php?
What is the main function of php?
How can you get the size of an image in PHP?
What is strstr php?
Can you extend a final defined class?
What does $_server mean?