I'm trying to understand what exactly @readfile() does (as opposed to readfile() ). According to the docs, using @ in front prevents an error message from printing:
"
Returns the number of bytes read from the file. If an error occurs, FALSE is returned and unless the function was called as @readfile(), an error message is printed.
"
In my experimenting it appears to do more than that. It appears to prevent any value being returned. Is this correct?
"
Returns the number of bytes read from the file. If an error occurs, FALSE is returned and unless the function was called as @readfile(), an error message is printed.
"
In my experimenting it appears to do more than that. It appears to prevent any value being returned. Is this correct?