Tagged Questions
The error-suppression tag has no wiki summary.
29
votes
19answers
11k views
Suppress error with @ operator in PHP [closed]
In your opinion, is it ever valid to use the @ operator to suppress an error/warning in PHP whereas you may be handling the error?
If so, in what circumstances would you use this?
Code examples are ...
24
votes
3answers
12k views
What is the use of @ symbol in php?
I have seen using @ in front of certain functions like following:
$fileHandle = @fopen($fileName, $writeAttributes);
What is the use of this symbol?
6
votes
6answers
116 views
Is @$array['possibly_missing_key'] an anti-pattern?
Is it OK to use @ when extracting a possibly missing value from a PHP array? Example:
$value = @$array['possibly_missing_key'];
The intended behavior:
if (isset($array['possibly_missing_key'])) {
...
5
votes
7answers
2k views
PHP alias @ function
I'm new to PHP and I'm confused seeing some examples calling a function with a @ prefix like @mysql_ping().
What is it for? Googling / searching is not much of a help since @ gets discarded and ...
4
votes
1answer
46 views
PHP notice supression; only certain circumstances/methods
tl;dr - Is there an effective way to manage the error reporting level of PHP when working in a very strict environment, given certain processes would be made easier with a less strict level?
Alright; ...
4
votes
8answers
3k views
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 the Thread as it's only purpose was to show a Now Loading splash form.
My problem is that ...
3
votes
3answers
207 views
C#: Any way to suppress compiler errors similar to suppressing warning messages?
I have the following code that generates a compiler error:
Boolean IConvertible.ToBoolean(IFormatProvider provider)
{
ThrowHelper.ThrowInvalidCast(typeof(MyType), typeof(Boolean));
...
3
votes
13answers
2k views
Php function argument error suppression, empty() isset() emulation
I'm pretty sure the answer to this question is no, but in case there's some PHP guru
is it possible to write a function in a way where invalid arguments or non existent variables can be passed in and ...
2
votes
1answer
79 views
Suppress unimplemented methods in eclipse
Is it possible to suppress the unimplemented methods error in eclipse? If so, is this a smart thing to do or will this cause possible instability?
2
votes
4answers
89 views
Why won't a line of code work with error suppressor removed?
I am using PHP classes to connect to a data base. I am unable to solve a problem -- please help me out regarding this.
I have a function:
function getCampus($cm_id) //returns campus name
{
...
2
votes
4answers
189 views
Error Suppression @ Not Working
I've been happily using the error suppression operator on my PHP dev setup. But recently have gotten hit with Notices like so:
Notice: Uninitialized string offset: 0 in ...
1
vote
2answers
2k views
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 some kind of warnings with --inline-suppr command.
However, I can find what "suppressed_error_id" I ...
0
votes
1answer
36 views
PHP suppress errors in function parameters
Extension from http://stackoverflow.com/a/55191/547210
I am creating a validating function to check several attributes of string variables, which may or may not have been set. (One of the attributes ...
0
votes
0answers
14 views
Amazon S3 GET Failures and Retry
We have been using S3 for storing images and PDFs for our web application for some time. When we first coded our web application, the error rate on S3 GETs was fairly high (~1% on first attempt) and ...
0
votes
0answers
36 views
Suppressing errors in LoadLibrary
I'm trying to get rid of the error messages Windows sometimes pops when loading a DLL.
I tried to do the following:
UINT oldErrorMode = SetErrorMode(SEM_FAILCRITICALERRORS);
...
0
votes
1answer
77 views
eclipse error when using a java variable between included files
I have a JSP file that @includes two other files.
The first of the included files has a global variable declared within it.
I want to use this variable in the second included file.
It works o.k. ...
0
votes
1answer
173 views
resharper “cannot resolve symbol absmiddle”
I have resharper 5.1. When I analyze "Errors in Solution" I get a lot of the same error in my aspx files. The error is:
cannot resolve symbol 'absmiddle'
It occurs on a line of code like this:
...
0
votes
3answers
175 views
what does @ means before include or require
i wonder what does @ means when we use it before include or require in php ?!
such as :
@include('block.php');
maybe its a noob question , but i need to know it guys ?!
so sorry for that
0
votes
3answers
130 views
What is the best practice for outputting a variable which may or may not contain anything in PHP?
I am developing an application and want to display a form that will be filled in if editing the form, but will not be if the form will be a new entry. I believe the least verbose way of doing this is ...