Problem Statement
Which function is used to control which PHP errors are reported?
Explanation
The error_reporting() function sets which levels of errors PHP reports. For example, error_reporting(E_ALL) enables all errors.
Code Solution
SolutionRead Only
error_reporting(E_ALL);
