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,586
  • 9
  • 47
  • 99

1 Answers1

4

@ suppresses errors:

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

generally, you don't want to do that

Cal
  • 6,947
  • 23
  • 28