3

Possible Duplicate:
Reference - What does this symbol mean in PHP?

What's the difference between calling @header() and header() function in PHP ?

Community
  • 1
  • 1
Jerome Ansia
  • 6,854
  • 11
  • 53
  • 99

1 Answers1

4

@ suppresses errors:

http://php.net/manual/en/language.operators.errorcontrol.php

generally, you don't want to do that

Cal
  • 7,067
  • 25
  • 28