When should I use require_once vs include?
The code is in a custom WordPress theme, if that matters.
|
There are So your question should be...
The answer to 1 is described here.
The answer to 2 can be found here.
|
|||||||||||||||
|
|
Use
But basically, it's up to you, when to use which. |
||||
|
|
|
My suggestion is to just use Using require or include implies that your code is not reusable elsewhere, i.e. that the act of using If you're already doing functional programming or OO, using |
||||
|
|
|
Difference between _once functions and without _once functions: without _once code will be included again whereas with _once functions PHP keeps track of the included files and will include it only once. Difference between require and include: If a required file is not found PHP will emit a fatal error whereas for include only a warning will be emitted. |
|||
|
|
|
If you don't have output done by the file, you should use If you have output done by the file, use The |
|||||||||||
|
|
The difference is in the error the commands generate. With
So use it if the file is required to make the remaining code work and you want the script to fail the file is not available. For
Same applies to Reference: |
||||
|
|
|
The See the following documentation pages: |
||||
|
|
|
Whenever you are using
and in another file that I have named test2.php
as you are watching the m requiring the the test1 file twice but the file will include the test1 once and for calling at the second time this will be ignored. And without halting will display the output a single time. Whenever you are using 'include_once()` can be used in a file to include another file when you need the called file more than once in the current file. Here in the example I have a file named test3.php.
And in another file that I have named test4.php
as you are watching the m including the test3 file will include the file a single time but halt the further execution. |
||||
|
|
|
Use "include" for reusable PHP templates. Use "require" for required libraries. "*_once" is nice, because it checks whether the file is already loaded or not, but it only makes sense for me in "require_once". |
||||
|
|
|
With require the file must exist, if it doesn't then an error will display; whereas with include - if the file doesn't exist then then the page will continue loading. |
|||
|
|
|
From the manual:
The same is true for the |
|||
|
|
|
Include / Require you can include the same file more than once also:
|
|||
|
|
|
You should keep class and function definitions organized in files. Use require_once to load dependencies (classes, functions, constants). Use require to load template-like files. |
|||
|
|
|
require has greater overhead than include, since it has to parse the file first. Replacing requires with includes is often a good optimization technique. |
|||
|
|
|
Require critical parts, like authorization and include all others. Multiple includes are just very bad design and must be avoided at all. So, *_once doesn't really matter. |
||||
|
|
|
Another thing is if file is included before. Then |
||||
|
|
include_once: php.net/manual/en/function.include-once.php – Felix Kling Mar 10 '10 at 16:17