I"m looking at someone code and it has many
@$_GET[];
@$_POST[];
What does the @
do?
I"m looking at someone code and it has many
@$_GET[];
@$_POST[];
What does the @
do?
@
in PHP suppresses any errors, and allows anything executed thereafter to silently fail (instead of output an error string (assuming show_errors=true
)).
See the docs on error control operators for more information.