vote up 0 vote down star

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?

flag

1  
Duplicate of stackoverflow.com/questions/596156/… – Török Gábor Sep 23 at 14:04

closed as exact duplicate by ojrac, gs, crashmstr, Dinah, sth Sep 24 at 22:27

6 Answers

vote up 2 vote down check

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.

link|flag
Just for precision's sake, it will not exit the program, it will abort it through an error. – Vinko Vrsalovic Sep 23 at 22:40
Conceded. It will trigger an error. – Jeff Ober Sep 24 at 0:48
vote up 1 vote down

Require:

  • It raises an fatal error.
  • You will use it all the time. Think of it as a default way. Unless you dont have a compelling reason to use include. Dont use it. Use require. Reason is that Fatal Errors are preferable than warnings.

Include:

  • It raises a warning.
  • You should use this only when you are including a file which acts as a plugin. Which does some additional work. And in that condition you can append @ to suppress the warnings.
link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 11 vote down

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().

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.