Error control operator in PHP
Answer:
The error control operator (the @) is useful to ignore any error messages that might be generated by PHP.
E.g.
<?php
$my_value = @$my_array[$key];
The above statement will not generate any warning even if the index $key doesn't exist.