Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

I have this assignment:

$buffer=@data_value[$i];

what does the @ mean?

share|improve this question
14  
It's to prevent you from figuring out what's wrong with your code. – Ignacio Vazquez-Abrams Dec 8 '10 at 23:01
1  
Actually that statement does not even compile – Matteo Riva Dec 8 '10 at 23:02
@Ignacio I second that. Our phpcs code standards are configured to pick up any developers trying to do this and yell at them. – El Yobo Dec 8 '10 at 23:03
@kemp: yes it does... – nico Dec 8 '10 at 23:04
1  
@kemp: None of my PHP code compiles! – webbiedave Dec 8 '10 at 23:23
show 5 more comments

marked as duplicate by Gordon, Tim Stone, Dan Grossman, Shaggy Frog, Graviton Dec 9 '10 at 3:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 6 down vote accepted

That prevents any warnings or errors from being thrown when accessing the ith element of data_value.

See this post for details.

share|improve this answer

The @ will suppress errors about variable not being initialized.

Also, your code is probably missing a $ after @:

$buffer=@$data_value[$i];
share|improve this answer

It is called the "error-control operator". Since it's an assignment, I believe you should do the rest yourself.

share|improve this answer

As above, it suppresses the error if the array key doesn't exist. A version which will do the same without resorting to dodgy error suppression is

$buffer = array_key_exists($i, $data_value) ? $data_value[$i] : null;
share|improve this answer
That's just error suppression via syntactic salt, not a significantly different outcome. – mario Dec 8 '10 at 23:50
No, it's correctly checking that a value exists before attempting to make use of it. – El Yobo Dec 9 '10 at 0:34

the @ in front of a statement means that no warnings/errors should be reported from the result of that statement. To put simply, Error Reporting is suppressed for this statement.

This is particularly useful, when e.g. @fclose(fopen("file.txt",w")) which can throw several warnings/errors depending on the situation, but with an @ in front of it, all these warnings or errors will be suppressed.

share|improve this answer
It's less often useful than not. – BoltClock Dec 8 '10 at 23:14
Agreed. What I meant here was, this is useful when you are in a production environment and do not want to show error reports to end-user. – Stoic Dec 8 '10 at 23:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.