PHP difference between @header () and header () functions

Possible duplicate:
Link - what does this symbol mean in PHP?

What is the difference between calling @header () and header () in PHP?

+3


source to share


1 answer


@

suppresses errors:

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



in general you don't want to do this

+4


source







All Articles