nadeemshafi9 Posted July 27, 2009 Share Posted July 27, 2009 hi guys i need to turn off strict standards errors for a bit, any suggestions on how to do this in teh code ? thanks Link to comment https://forums.phpfreaks.com/topic/167599-how-to-turn-off-strict-standards-errors/ Share on other sites More sharing options...
GingerRobot Posted July 27, 2009 Share Posted July 27, 2009 Assuming you're using a PHP version less than 6, you'll just have to set the error reporting level to E_ALL. You can do this at run-time like so: error_reporting(E_ALL); Link to comment https://forums.phpfreaks.com/topic/167599-how-to-turn-off-strict-standards-errors/#findComment-883790 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.