Q. Which function is used to include and execute a PHP file only once?
β
Correct Answer: (A)
include_once()
Explanation: include_once() includes and evaluates the file during the execution of the script, and only once.