Possible Duplicate:
Reference - What does this symbol mean in PHP?
I have this assignment:
$buffer=@data_value[$i];
what does the @ mean?
I have this assignment:
what does the @ mean? |
|||||||||||||||||
|
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.
|
That prevents any warnings or errors from being thrown when accessing the See this post for details. |
|||
|
|
|
The Also, your code is probably missing a $ after @:
|
|||
|
|
|
It is called the "error-control operator". Since it's an assignment, I believe you should do the rest yourself. |
|||
|
|
|
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
|
|||
|
the This is particularly useful, when e.g. |
|||||
|