Приглашаем посетить
Орловка (orlovka.niv.ru)

Section A.5.  error_reporting

Previous
Table of Contents
Next

A.5. error_reporting

Many security vulnerabilities are a result of using uninitialized variables or other sloppy programming practices. With PHP's error_reporting directive set to E_ALL or E_ALL | E_STRICT, PHP will notify you of such practices. These settings both report notices.

I recommend setting error_reporting to at least E_ALL.


Previous
Table of Contents
Next