Ninjakreborn Posted August 25, 2010 Share Posted August 25, 2010 I have been working on this awhile (the perfect PHP error handling for my coding style). I have tried to set it up as: <?php error_reporting(E_ALL & E_STRICT & ~(E_NOTICE)); ?> I want this to show me E_ALL errors, E_STRICT errors, and NOT show me E_NOTICE. Is this the right way to set that up, or am I doing something wrong. I haven't used E_STRICT before but I am anxious to see what kind of errors that have it showing since I haven't messed with it before. Thanks again. Link to comment https://forums.phpfreaks.com/topic/211728-error-reporting-specific-settings/ Share on other sites More sharing options...
Ninjakreborn Posted August 25, 2010 Author Share Posted August 25, 2010 I also tried: <?php error_reporting(E_ALL & ~E_NOTICE | E_STRICT); ?> This seems to work. The logic for this should be "Show E_ALL. Don't show E_NOTICE. Also show E_STRICT" Is this correct? Link to comment https://forums.phpfreaks.com/topic/211728-error-reporting-specific-settings/#findComment-1103673 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.