Php – the use of the @ symbol in PHP

error-suppressionoperatorsPHP

I have seen uses of @ in front of certain functions, like the following:

$fileHandle = @fopen($fileName, $writeAttributes);

What is the use of this symbol?

Best Answer

It suppresses error messages — see Error Control Operators in the PHP manual.