Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In php file ofthe we use include and require a file. I think both are used for attaching an external file but when we use include and when require?

share|improve this question
There's no diff. both do the same thing. Require_once will make sure that the script is never included more than once which would ensure you dont get an error saying you tried to redefine things like constants, classes or functions assuming your required file had these in it and you happened to include/require it more than once (without using require_once) – Jason Jan 11 '11 at 4:58
@Jason: Uhm, wrong. – cdhowie Jan 11 '11 at 5:01

1 Answer

require() will cause a fatal error if the file cannot be found, therefore terminating the script. include() will only emit a warning, and the script will continue to run. So you should use require() when you are including a library or something that you need for your script, and include() when the include is optional.

In practice, I have only ever used require().

share|improve this answer
Historically, require used to always be called, whether you surrounded it with conditional statements or not. PHP 4.0.2 changed this, so now require will behave more sensibly. – Christian Mann Jan 11 '11 at 5:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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