Which one of the following statements is true for include_once() and require_once()?
A
Both are exactly the same
B
include_once is used for files where as require_once() is not
C
Both Handle the errors in the same way
D
Both do not handle the errors in the same way
Correct Answer: Both do not handle the errors in the same way
The only difference between the include() and require() statements lies in their handling of errors. A file invoked using require() will bring down your entire process when you meet an error. The same error encountered via a call to include() will merely generate a warning and end execution of the included file.