Meaning/purpose of the mysqli "at" symbol

This question already has an answer here:

  • What is the use of the @ symbol in PHP? 10 answers
  • Reference — What does this symbol mean in PHP? 18 answers

  • 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.

    链接地址: http://www.djcxy.com/p/57706.html

    上一篇: @#变量在PHP中的含义?

    下一篇: mysqli“at”符号的含义/目的