Warum sollte error_reporting auf einer Entwicklungsplattform auf E_ALL eingestellt sein?

Error_reporting should be set to E_ALL on a development platform to ensure that all errors, warnings, and notices are displayed. This helps developers to identify and fix issues in their code during the development process. It allows for thorough testing and debugging before deploying the code to a production environment.

error_reporting(E_ALL);