欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php连接mysql超时的解决方法

程序员文章站 2022-04-28 08:12:56
...
  1. function reconnect(){
  2. if (!mysql_ping ($this->db)) {
  3. //here is the major trick, you have to close the connection (even though its not currently working) for it to recreate properly.
  4. mysql_close($this->db);
  5. $this->connect();
  6. }
  7. }
复制代码
其中的mysql_ping()用来判断连接是否已经被断开了,若是断开了,关闭当前的链接,重新创建新的连接。
这样,只要发现连接被断开了,即可重新连接了。