How to enable error reporting in PHP

  error_reporting(E_ALL);
  ini_set("display_errors", 1);

OR


  error_reporting(E_ALL | E_STRICT);
  ini_set("display_errors", 1);

"hide" notifications/errors about deprecated functions
error_reporting((E_ALL | E_STRICT) ^ E_DEPRECATED);