Question:Run-time inclusion of a PHP script is performed using the ________ construct, while compile-time inclusion of PHP scripts is performed using the _______ construct.
A include_once, include
B require, include
C require_once, include
D include, require
E All are correct
+ ExplanationIn recent versions of PHP, the only difference between require() (or require_once()) and
include() (or include_once()) is in the fact that, while the former will only throw a warning and allow the script to continue its execution if the include file is not found, the latter will throw an error and halt the script. Therefore, Answer E is correct.