Meaning/purpose of the mysqli "at" symbol
This question already has an answer here:
The @
suppresses errors in php.
http://php.net/manual/en/language.operators.errorcontrol.php
The @
operator suppresses error messages created by the following code. In this special case, a failure to connect will not result in a logged (or displayed) error, but will most likely be caught further on.
上一篇: @#变量在PHP中的含义?
下一篇: mysqli“at”符号的含义/目的