How-to articles, tricks, and solutions about REQUIRE-ONCE
Difference between require, include, require_once and include_once?
In PHP, require and include are two statements that are used to include a file in a PHP script.
relative path in require_once doesn't work
The require_once function in PHP is used to include a specific PHP file in another file, but it will only include the file once to prevent multiple declarations.