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 are variables in research examples?
What is the purpose of constant() function?
Write an example to remove html tags from a string in php?
Which function is used in php to check the data type of any variable?
How do you explain independent and dependent variables?
Explain the different types of errors in php.
What enctype is required for file uploads to work?
What is a php namespace?
What does csrf token mean?
Which php function will attach one file to another?
Explain how to execute a php script using command line.
What does $_cookie mean?
CWD is a type of shell variable. State Whether True or False?
What is use of in_array() function in php?
Is php developer in demand?