Jedná sa o tzv. Error Control Operator, ktorý potláča generovanie chybových správ. Viac na php.net
Príklad:
<?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. ?>
[...] This post was mentioned on Twitter by PHPprogramátor.info. PHPprogramátor.info said: Na čo sa používa znak @ pred výrazom? http://is.gd/c8Eqq #PHP #JOB #interview [...]