Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php error reporting all

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
//OR
ini_set('display_errors', 1);
ini_set('display_startup_errors', 0);
error_reporting(E_ALL & ~E_NOTICE);
 
PREVIOUS NEXT
Tagged: #php #error #reporting
ADD COMMENT
Topic
Name
7+7 =