I hate that google can not search for symbols. I saw this in some sample code and wondered why there is an @ sign before the readfile function:
@readfile($filename);
What does it mean different to without an @ symbol?
|
feedback
|
|
An If you removed the | ||||
|
feedback
|
|
It's error control operator. Manual will tell you everything... | |||
|
feedback
|
|
It is PHP's error suppression operator. With it you can suppress error messages. Tip: Simply don’t use the error suppression operator with speed-critical code. Future: Because Important Reading: | ||||
|
feedback
|
http://php.net/[something]and get to the right page. And yes, in this case, the[something]can actually be@: php.net/@ – Joey Apr 16 '10 at 16:33