01.
<?php
02.
03.
04.
error_reporting
(0);
05.
06.
07.
error_reporting
(E_ERROR | E_WARNING | E_PARSE);
08.
09.
10.
11.
error_reporting
(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
12.
13.
14.
15.
error_reporting
(E_ALL ^ E_NOTICE);
16.
17.
18.
error_reporting
(E_ALL);
19.
20.
21.
error_reporting
(-1);
22.
23.
24.
ini_set
(
'error_reporting'
, E_ALL);
25.
26.
?>