I am trying to turn off all errors on my website. I have followed different tutorials on how to do this, but I keep getting read and open error messages. Is there something
You can also use PHP's error_reporting();
error_reporting();
// Disable it all for current call error_reporting(0);
If you want to ignore errors from one function only, you can prepend a @ symbol.
@
@any_function(); // Errors are ignored