tags:

views:

114

answers:

4

Possible Duplicate:
What is the use of @ symbol in php?

Hello all, an easy one for you,

what does the @ sign mean when placed before a php function call?

Thanks!

+4  A: 

it means it won't print out any error in that function, if one occurs.

Jasper De Bruijn
+3  A: 

Suppress error reporting

jldupont
+2  A: 

PHP's error suppress operator used to suppress error messages.

SideNote: Avoid it as much as you can, also it slows down performance heavily :)

Sarfraz
+1 for the sidenote, that's news for me.
Jasper De Bruijn
@Jasper De Bruijn: thanks
Sarfraz
+2  A: 

From the man: http://php.net/manual/en/language.operators.errorcontrol.php

Typeoneerror