PHP MySQL set Connection Timeout

后端 未结 6 717
醉梦人生
醉梦人生 2020-12-17 18:19

There are certain posts on MySQL connection set time out from PHP using mysql.connect_timeout. I want to know if this set timeout from PHP just time out the initial connecti

6条回答
  •  青春惊慌失措
    2020-12-17 18:54

    It is in your php configuration file. The location of this file is different from one system to the other. On Ubuntu and Debian it is located in /etc/php5/apache2/php.ini

    mysql.connect_timeout = 60 /* the default value is 60 seconds */
    

提交回复
热议问题