|
Similarly the require() statement includes and evaluates the specified file.
Both include() and require() works in same way, the only difference is how they handle
failure. The include() statement produces warning, but the script will continue its
execution. While the require() statement produces a Fatal Error and script stop its execution.
|