Skip to content

Instantly share code, notes, and snippets.

@ihzarizkyk
Created March 17, 2020 11:39
Show Gist options
  • Save ihzarizkyk/d08894d189fe67afb30f56c6897ff216 to your computer and use it in GitHub Desktop.
Save ihzarizkyk/d08894d189fe67afb30f56c6897ff216 to your computer and use it in GitHub Desktop.
Error Reporting PHP
<?php
//Mematikan semua laporan error
//Turn Off Error Reporting
error_reporting(0);
//Melaporkan Semua Error PHP
// Report all PHP errors
error_reporting(-1);
//Melaporkan Semua Error PHP (melihat semua changelog)
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment