Basically, I\'ve seen people using @ before their function calls, not for every function, but for some kind of extension functions like file_get_contents(
@
file_get_contents(
I have similar doubt about @ used in front of functions. To avoid this I made some verification before the function call. My example is:
if ( is_file($filename) ) $timestamp = filemtime( $filename );