Possible Duplicate:
Reference - What does this symbol mean in PHP?
I was wondering what @ means in PHP language. I have seen people using
$connect = @mysql_query('sql query here');
Not sure why. Could someone explain it for me?
I was wondering what
Not sure why. Could someone explain it for me? |
|||||||||
|
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.
|
The For instance, using:
would result in a warning being shown, telling you that the MySQL query is invalid, while
would not. Note, however, that this is very bad programming practice as it does not make error disappear, it just hides them, and it makes debugging a heck of a lot worse since you can't see what's actually wrong with your code. Instead of using |
|||||||||||||
|
|
The |
|||
|
|
|
It's an error control operator. |
|||
|
|
|
The
Resources : |
|||
|
|
|
@ Operator = Indicates that if there is any kind of error occur, then don't display the message in the user's browser. There are people who test this and didn't see the difference even they put the @ or not they still don't see any error in the browser, well just to add up, the reason why this happen is because of the setting in the php.ini file for error output is turn off. Different hosting company have different setting so to make sure that you don't want to see any ugly script error for the users or hackers(for them to give a clue to infiltrate you site) you can always use the @ operator. Hope this help. |
|||
|
|