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 difference between explode() or split() in PHP?
Write a query to find the 2nd highest salary of an employee from the employee table?
What is composer used for?
What is the use of 'print' in php?
How to run a php script?
What is session php?
Why post method is used in php?
What is the ioncube php loader?
How can i execute PHP File using Command Line?
How to remove blank spaces from the string?
What are the file upload settings in configuration file?
What the use of var_dump()?
What are the advantages of object-oriented programming in php?
Which is the latest version of php?
What is ltrim?