Jump to content

difference between require_once(), require(), include()


Recommended Posts

require_once() requires a file to be loaded only once so that no redirect loops occur and, like require(), it requires the file referenced to exist, otherwise it throws a fatal error and the script breaks.

include() and include_once() work analog to require_once() and require_once(), just that script parsing is not stopped if the file is not found (it'll display a warning E_NOTICE, though).

Link to comment
Share on other sites

Simply put,

  • require() - Includes a file. If it encountered an error including the file, it will display an error and stop execution.
  • require_once() - Does a require() but if the file is already included, it will no longer include it and won't produce a loop of errors.
  • include() - Includes a file. If it encountered an error including the file, it will display an error and continue executing the rest of the script (unsafe).
  • include_once() - Does an include() but if the file is already included, it will no longer include it and won't produce a loop of errors.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.