I want to disable all PHP erros or prevent them to be displayed, but Strict Standard errors insist on showing up.
I'm adding this (though two line are redundant)
ini_set('error_reporting', 0);
ini_set( "display_errors", 0 );
error_reporting(0);
My application is hosted on OpenShift and running PHP 5.4.
EDIT
Just realized it's not the only kind of error being thrown. I added a syntax error (omitted a ;) and it showed the error.
Parse error: syntax error, unexpected ...