Error_reporting Method PHP Example
Hello,
Immediately, i we are going to present you error_reporting technique PHP instance. This text will provide you with easy instance of error_reporting technique PHP instance. you’ll study error_reporting technique PHP instance. So let’s comply with few step to create instance of error_reporting technique PHP instance.
Instance :
<?php
// disable all error reporting
error_reporting(0);
// easy working errors
error_reporting(E_ERROR | E_WARNING | E_PARSE);
// all errors besides E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
// all PHP errors
error_reporting(E_ALL);
// all PHP errors
error_reporting(-1);
// as error_reporting(E_ALL);
ini_set('error_reporting', E_ALL);
?>
I hope it should help you…
Komentar
Posting Komentar