Saltar al contenido

ejemplo de código error_reporting (0)

Este team de especialistas luego de varios días de trabajo y de juntar de datos, hemos dado con los datos necesarios, deseamos que resulte de gran utilidad para tu proyecto.

Ejemplo 1: error de php

ini_set('display_errors','1');ini_set('display_startup_errors','1');error_reporting(E_ALL);

Ejemplo 2: informe de errores de php

ini_set('display_errors',1);ini_set('display_startup_errors',1);error_reporting(E_ALL);

Ejemplo 3: informe de errores de php ini_set

/* Display all errors like dev */ini_set('display_errors',1);ini_set('display_startup_errors',1);error_reporting(E_ALL);/* Display PROD errors */ini_set('display_errors',1);ini_set('display_startup_errors',0);error_reporting(E_ALL&~E_NOTICE);/* OTHER SETTINGS*/// Report simple running errorserror_reporting(E_ERROR|E_WARNING|E_PARSE);// Reporting E_NOTICE error_reporting(E_ERROR|E_WARNING|E_PARSE|E_NOTICE);// Report all errors except E_NOTICEerror_reporting(E_ALL&~E_NOTICE);// For PHP < 5.3error_reporting(E_ALL^E_NOTICE);// Report all PHP errorserror_reporting(E_ALL);//orerror_reporting(-1);//orerror_reporting(0);

Ejemplo 4: informe de errores de php

/* Answer to: "php error reporting" */ini_set('display_errors',1);ini_set('display_startup_errors',1);error_reporting(E_ALL);/*
  What do these lines of code do exactly?

  The ini_set function will try to override the configuration found
  in your PHP ini file.

  The display_errors and display_startup_errors are just two of the
  directives that are available. The display_errors directive will
  determine if the errors will be displayed or hidden to the user.
  Usually, the dispay_errors directive should be turned off after
  development.

  The display_startup_errors, however, is a separate directive
  because the display_errors doesn’t handle the errors that will be
  encountered during PHP’s startup sequence. The list of the
  directives that can be overridden by the ini_set function is found
  in the official documentation.
*/

Ejemplo 5: informe de errores de php

display_errors = on

Sección de Reseñas y Valoraciones

Más adelante puedes encontrar las ilustraciones de otros sys admins, tú de igual forma tienes la libertad de insertar el tuyo si lo crees conveniente.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *