Possible Duplicate:
What is the difference between require and include with php?
when do i use include and when require? i noticed, include seems to be used for including "views" eg. headers, sidebars etc. while require classes and extra code?
|
|
when do i use include and when require? i noticed, include seems to be used for including "views" eg. headers, sidebars etc. while require classes and extra code?
|
||||
|
|
|
It follows the logic of your program. Require is used for a prerequisite file. It will exit the program if the file is not found. Include may be used to include a file that does not exist with only a warning. It is often used for building pages out of pieces where some of the pieces may or may not exist. |
||||
|
|
|
Require:
Include:
|
||
|
|
|
|
The require() function is identical to include(), except that it handles errors differently. If an error occurs, the include() function generates a warning, but the script will continue execution. The require() generates a fatal error, and the script will stop. |
||
|
|
|
|
I've already ask this question : http://stackoverflow.com/questions/596156/what-is-the-difference-between-require-and-include-with-php |
||
|
|
|
|
include() issues a warning. require() raises and error. Typically, not loading a source file is not a recoverable error so you wouldn't want execution to continue in your program. Therefore, I recommend require() over include() in almost all situations. |
||
|
|
|
|
require() is identical to include() except upon failure it will produce a fatal E_ERROR level error. You should use require() when the lack of a file would render your application useless. If it's not critical, you should use include(). |
|||
|
|