$mysqli = new mysqli(); //或mysqli_init();
$mysqli->options(MYSQL_OPT_RECONNECT,1); ///一定要加这行,不然这ping()函数不起作用,或可直接在php.ini设置mysqli.reconnect = On
$mysqli->real_connect($dbhost, $dbuser, $dbpw, $dbname, $port, null, MYSQLI_CLIENT_COMPRESS) // MYSQLI_CLIENT_COMPRESS启用压缩的客户端协议,用过heidisql工具的应该比较熟悉这个选项
$mysqli->query("SET @@sql_mode =''") //mysql大于5.0.1版本的运行此句,兼容模式,为了防止错误崩裂
根据官方文档:
Checks whether the connection to the server is working. If the connection has gone down and auto-reconnect is enabled an attempt to reconnect is made. If the connection is down and auto-reconnect is disabled, mysql_ping() returns an error.
也就是说,如果 MYSQL_OPT_RECONNECT 没有被设置为 1(开启),那么mysql_ping()不会完成自动重连,只是简单返回一个error。
那么如果已经开启这个选项了呢?官方文档又说了:
MYSQL_OPT_RECONNECT (argument type: my_bool *)
Enable or disable automatic reconnection to the server if the connection is found to have been lost.
也就是说,如果发现连接断开,那么会启动自动重连功能。
现在问题是:连接断开这事儿是啥时候被发现的呢?
根据官方文档mysql_ping()肯定是会发现,那mysql_query()是否会"发现"呢?
需要的,不加->ping()的话链接断开的情况下query会失败导致第一次取数据失败,但是会重连下次query才会正常,所以封装下query在每次查找前ping下比较稳妥