@ sign in front of variable

Sometimes in your programming you’ll need to use @ sign in front of a variable. For example, @$_REQUEST[“username”]; The @ sign is an error control operator. When prepended to an expression in PHP, any error messages that might be generated by that expression will be ignored.

For example:

$value = @$cache[$key];
// will not issue a notice if the index $key doesn't exist.