Error Control Operators

PHP supports one error control operator: the at sign (@). When prepended to an expression in PHP, any error messages that might be generated by that expression will be ignored.

If you have set a custom error handler function with set_error_handler() then it will still get called, but this custom error handler can (and should) call error_reporting() which will return 0 when the call that triggered the error was preceded by an @.

If the track_errors feature is enabled, any error message generated by the expression will be saved in the variable $php_errormsg. This variable will be overwritten on each error, so check early if you want to use it.

<?php
/* Intentional file error */
$my_file = @file ('non_existent_file') or
    die (
"Failed opening file: error was '$php_errormsg'");

// this works for any expression, not just functions:
$value = @$cache[$key];
// will not issue a notice if the index $key doesn't exist.

?>

Note: The @-operator works only on expressions. A simple rule of thumb is: if you can take the value of something, you can prepend the @ operator to it. For instance, you can prepend it to variables, function and include calls, constants, and so forth. You cannot prepend it to function or class definitions, or conditional structures such as if and foreach, and so forth.

See also error_reporting() and the manual section for Error Handling and Logging functions.

Warning

Currently the "@" error-control operator prefix will even disable error reporting for critical errors that will terminate script execution. Among other things, this means that if you use "@" to suppress errors from a certain function and either it isn't available or has been mistyped, the script will die right there with no indication as to why.

Коментарии

Better use the function trigger_error() (http://de.php.net/manual/en/function.trigger-error.php)
to display defined notices, warnings and errors than check the error level your self. this lets you write messages to logfiles if defined in the php.ini, output
messages in dependency to the error_reporting() level and suppress output using the @-sign.
2004-12-26 10:19:58
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
I was confused as to what the @ symbol actually does, and after a few experiments have concluded the following:

* the error handler that is set gets called regardless of what level the error reporting is set on, or whether the statement is preceeded with @

* it is up to the error handler to impart some meaning on the different error levels. You could make your custom error handler echo all errors, even if error reporting is set to NONE.

* so what does the @ operator do? It temporarily sets the error reporting level to 0 for that line. If that line triggers an error, the error handler will still be called, but it will be called with an error level of 0

Hope this helps someone
2008-08-12 11:29:03
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Автор:
Error suppression should be avoided if possible as it doesn't just suppress the error that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. This will make debugging a nightmare.

It is far better to test for the condition that you know will cause an error before preceding to run the code. This way only the error that you know about will be suppressed and not all future errors associated with that piece of code.

There may be a good reason for using outright error suppression in favor of the method I have suggested, however in the many years I've spent programming web apps I've yet to come across a situation where it was a good solution. The examples given on this manual page are certainly not situations where the error control operator should be used.
2009-05-19 16:46:14
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Автор:
Be aware of using error control operator in statements before include() like this:

<?PHP

(@include("file.php"))
 OR die(
"Could not find file.php!");

?>

This cause, that error reporting level is set to zero also for the included file. So if there are some errors in the included file, they will be not displayed.
2009-10-11 12:20:45
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
After some time investigating as to why I was still getting errors that were supposed to be suppressed with @ I found the following.

1. If you have set your own default error handler then the error still gets sent to the error handler regardless of the @ sign.

2. As mentioned below the @ suppression only changes the error level for that call. This is not to say that in your error handler you can check the given $errno for a value of 0 as the $errno will still refer to the TYPE(not the error level) of error e.g. E_WARNING or E_ERROR etc

3. The @ only changes the rumtime error reporting level just for that one call to 0. This means inside your custom error handler you can check the current runtime error_reporting level using error_reporting() (note that one must NOT pass any parameter to this function if you want to get the current value) and if its zero then you know that it has been suppressed.
<?php
// Custom error handler
function myErrorHandler($errno$errstr$errfile$errline)
{
    if ( 
== error_reporting () ) {
       
// Error reporting is currently turned off or suppressed with @
       
return;
    }
   
// Do your normal custom error reporting here
}
?>

For more info on setting a custom error handler see: function.set-error-handler
For more info on error_reporting see: function.error-reporting
2010-07-14 12:33:32
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Be aware that using @ is dog-slow, as PHP incurs overhead to suppressing errors in this way. It's a trade-off between speed and convenience.
2010-09-08 07:02:36
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
If you're wondering what the performance impact of using the @ operator is, consider this example.  Here, the second script (using the @ operator) takes 1.75x as long to execute...almost double the time of the first script.

So while yes, there is some overhead, per iteration, we see that the @ operator added only .005 ms per call.  Not reason enough, imho, to avoid using the @ operator.

<?php
function x() { }
for (
$i 0$i 1000000$i++) { x(); }
?>

real    0m7.617s
user    0m6.788s
sys    0m0.792s

vs

<?php
function x() { }
for (
$i 0$i 1000000$i++) { @x(); }
?>

real    0m13.333s
user    0m12.437s
sys    0m0.836s
2011-02-20 14:39:10
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Автор:
If you use the ErrorException exception to have a unified error management, I'll advise you to test against error_reporting in the error handler, not in the exception handler as you might encounter some headaches like blank pages as error_reporting might not be transmitted to exception handler.

So instead of :

<?php

function exception_error_handler($errno$errstr$errfile$errline )
{
    throw new 
ErrorException($errstr0$errno$errfile$errline);
}

set_error_handler("exception_error_handler");

function 
catchException($e)
{
    if (
error_reporting() === 0)
    {
        return;
    }

   
// Do some stuff
}

set_exception_handler('catchException');

?>

It would be better to do :

<?php

function exception_error_handler($errno$errstr$errfile$errline )
{
    if (
error_reporting() === 0)
    {
        return;
    }

    throw new 
ErrorException($errstr0$errno$errfile$errline);
}

set_error_handler("exception_error_handler");

function 
catchException($e)
{
   
// Do some stuff
}

set_exception_handler('catchException');

?>
2011-06-22 09:27:55
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Автор:
This operator is affectionately known by veteran phpers as the stfu operator.
2013-08-05 04:05:45
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
While you should definitely not be too liberal with the @ operator, I also disagree with people who claim it's the ultimate sin.

For example, a very reasonable use is to suppress the notice-level error generated by parse_ini_file() if you know the .ini file may be missing.
In my case getting the FALSE return value was enough to handle that situation, but I didn't want notice errors being output by my API.

TL;DR: Use it, but only if you know what you're suppressing and why.
2015-02-20 16:15:14
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Автор:
There is no reason to NOT use something just because "it can be misused".  You could as well say "unlink is evil, you can delete files with it so don't ever use unlink".

It's a valid point that the @ operator hides all errors - so my rule of thumb is: use it only if you're aware of all possible errors your expression can throw AND you consider all of them irrelevant.

A simple example is
<?php

    $x 
= @$a["name"];

?>
There are only 2 possible problems here: a missing variable or a missing index.  If you're sure you're fine with both cases, you're good to go.  And again: suppressing errors is not a crime.  Not knowing when it's safe to suppress them is definitely worse.
2016-08-04 13:21:57
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Автор:
What is PHP's behavior for a variable that is assigned the return value of an expression protected by the Error Control Operator when the expression encounteres an error? 

Based on the following code, the result is NULL (but it would be nice if this were confirmed to be true in all cases).

<?php 

    $var 
3
   
$arr = array(); 

   
$var = @$arr['x'];    // what is the value of $var after this assignment?

    // is it its previous value (3) as if the assignment never took place?
    // is it FALSE or NULL?
    // is it some kind of exception or error message or error number?

   
var_dump($var);  // prints "NULL"

?>
2017-03-07 19:29:01
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Quick debugging methods :

@print($a);
is equivalent to
if isset($a) echo $a ;

@a++;
is equivalent to
if isset($a) $a++ ;
else $a = 1;
2019-06-07 16:54:12
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Please be aware that the behaviour of this operator changed from php5 to php7.

The following code will raise a Fatal error no matter what, and you wont be able to suppress it

<?php

function query()
{
   
$myrs null;
   
$tmp = @$myrs->free_result();

    return 
$tmp;
}

var_dump(query());

echo 
"THIS IS NOT PRINT";
?>

more info at: https://bugs.php.net/bug.php?id=78532&thanks=3
2019-09-13 15:15:05
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
* How to make deprecated super global variable `$php_errormsg` work

>1. modify php.ini 
>track_errors = On
>error_reporting = E_ALL & ~E_NOTICE
>2. Please note,if you already using customized error handler,it will prompt `undefined variable`
>please insert code`set_error_handler(null);` before executing code, e.g: 
>```php
>set_error_handler(null);
>$my_file = @file ('phpinfo.phpx') or 
>die ("<br>Failed opening file: <br>\t$php_errormsg");
>```

>(c)Kenny Fang
2020-08-06 11:14:13
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html
Автор:
It's still possible to detect when the @ operator is being used in the error handler in PHP8. Calling error_reporting() will no longer return 0 as documented, but using the @ operator does still change the return value when you call error_reporting().

My PHP error settings are set to use E_ALL, and when I call error_reporting() from the error handler of a non-suppressed error, it returns E_ALL as expected.

But when an error occurs on an expression where I tried to suppress the error with the @ operator, it returns: E_ERROR | E_PARSE | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR (or the number 4437). 

I didn't want to use 4437 in my code in case it changes with different settings or future versions of PHP, so I now use:

<?php
   
function my_error_handler($err_no$err_msg$filename$linenum) {
      if (
error_reporting() != E_ALL) {
         return 
false// Silenced
     
}

     
// ...
   
}
?>

If the code needs to work with all versions of PHP, you could check that error_reporting() doesn't equal E_ALL or 0.

And, of course, if your error_reporting settings in PHP is something other than E_ALL, you'll have to change that to whatever setting you do use.
2021-03-17 16:37:19
http://php5.kiev.ua/manual/ru/language.operators.errorcontrol.html

    Поддержать сайт на родительском проекте КГБ