Sunday 27 July 2014

disable STRICT errors in PHP

 if you want to disable STRICT errors, add ^ E_STRICT to your error reporting configuration, for example:
error_reporting(E_ALL ^ E_STRICT);

No comments:

Post a Comment