Jump to content

require / include


jk11uk

Recommended Posts

The difference is in warning message and behaviour... include will output a warning only and won't stop the scripting process.

require will through a higher level error (cant remember what exactly) and will STOP all scripting.

 

p.s. this is from memory and i don't guarantee it's the case.

Link to comment
https://forums.phpfreaks.com/topic/89887-require-include/#findComment-460683
Share on other sites

They function essentially the same way, the difference betwwen them being how they return errors.  If the included file isn't found or is not able to be included, PHP will throw a warning and continue running the rest of the script.  If the required file isn't found or is not able to be included, PHP will throw a fatal error and stop executing the script.  

 

Information in the manual:

 

require()

include()

 

Also look at the following:

 

require_once()

include_once()

 

Theo

Link to comment
https://forums.phpfreaks.com/topic/89887-require-include/#findComment-460689
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.