Top "Error-suppression" questions

Error suppression is the act of preventing an error from surfacing in programming, without addressing it.

What is the use of the @ symbol in PHP?

I have seen uses of @ in front of certain functions, like the following: $fileHandle = @fopen($fileName, $writeAttributes); What is the …

php operators error-suppression
How do I suppress shell script error messages?

In my shell script I got these lines: rm tempfl.txt rm tempfl2.txt If these do not exist I …

shell suppress-warnings error-suppression
Suppress error with @ operator in PHP

In your opinion, is it ever valid to use the @ operator to suppress an error/warning in PHP whereas you …

php operators error-suppression
How to use cppcheck's inline suppression filter option for C++ code?

I would like to use Cppcheck for static code analysis of my C++ code. I learned that I can suppress …

c++ static-analysis error-suppression cppcheck
How do I suppress a thread.abort() error C#?

I am showing a splash screen on a background thread while my program loads. Once it loads I am aborting …

c# .net multithreading error-suppression thread-abort
Convert raster images to vector graphics using OpenCV?

I'm looking for a possibility to convert raster images to vector data using OpenCV. There I found a function cv::…

opencv vectorization noise-reduction error-suppression
PHP error suppression is being ignored

My current php.ini file is set to report all errors other than deprecation and strict standards as follows: error_…

php error-reporting error-suppression