como evitar que se muestren los warnings en php

Solutions on MaxInterview for como evitar que se muestren los warnings en php by the best coders in the world

showing results for - "como evitar que se muestren los warnings en php"
Valeria
17 Jan 2016
1<?php
2// Desactivar toda las notificaciónes del PHP
3
4error_reporting(0);
5
6 
7// Notificar solamente errores de ejecución
8
9error_reporting(E_ERROR | E_WARNING | E_PARSE);
10
11
12error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
13
14
15// Mostrar todos los errores menos el E_NOTICE
16
17// Valor predeterminado ya descrito en php.ini
18
19error_reporting(E_ALL ^ E_NOTICE);
20
21
22//Notificar todos los errores de PHP
23
24error_reporting(E_ALL);
25
26
27// Notificar todos los errores de PHP
28error_reporting(-1);
29
30 
31
32// Lo mismo que error_reporting(E_ALL);
33
34ini_set('error_reporting', E_ALL);
35
36?>
similar questions