Distinguishing require, include, require_once, and include_once
In PHP, the usage of these functions can be confusing, leading to questions like:
require vs. include
Both functions embed external PHP scripts into the current one. However, they handle errors differently. If an error occurs, include generates a warning and continues execution; require generates a fatal error and stops the script.
require_once vs. require
In essence, they are identical, except that require_once checks if a file has already been included and skips its inclusion if true.
Re-evaluating require_once and include_once
While these functions may have been useful in the past, their relevance has diminished due to caching mechanisms employed by opcode caches. If you find yourself using *_once variants, consider restructuring your code for clarity and efficiency.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3