-
-
Save Emmathem/7b96baa769bb670e15d63ea811286cd6 to your computer and use it in GitHub Desktop.
PHP-Acceleration-Day 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INCLUDE AND INCLUDE_ONCE; REQUIRE AND REQUIRE_ONCE | |
Both are used to include a file on a page but the execution procedure or process differs, INCLUDE and INCLUDE_ONCE does not stop the | |
execution of a particular but REQUIRE and REQUIRE_ONCE does, and it mostly used to initialize a DB connection. When REQUIRE or REQUIRE_ONCE | |
can not find either the path, or the name of the file to be required, it throws a FATAL ERROR causing the program to stop executing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
question 4