I want to know where and how to use the at sign, like the example below.
if (!@$zip)
exit();
- What is it, is there a reference to it?
- How can i use it?
I want to know where and how to use the at sign, like the example below.
if (!@$zip)
exit();
In PHP, the @ is a control operator. When prepended to an expression, any error messages generated by it (except catchable errors) will be ignored.