This has been probably asked a lot of times, but couldn't find anything like this from searching, possible that I used wrong keywords - have no idea what is this called.
Basicly, I've seen people using @
before their function calls, not for every function, but some kind of extension functions like file_get_contents()
, mysql_connect()
and so on.
And yes, the question is, what for there are these @
before function calls?
Or in other words, what is the difference between @file_get_contents()
and file_get_contents()
?
Thanks in advance!