1
What’s the difference between display_errors and error_reporting ?
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
In fact I usually program with the display errors always 1, and I know that the reoprting error you can put several different options of error, but taking into account not only that, would have some difference between the display errors 1 and the error Reporting E_ALL ?
Why use error_reporting with display_errors and display_startup_errors?
– rray
Thanks, I read in the other topic
– Barack