Answers for "show error log php"

PHP
10

show php errors

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Posted by: Guest on February-20-2020
3

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);
Posted by: Guest on July-14-2020

Browse Popular Code Answers by Language