Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我set_time_limit(30)在 CentOS VPS 上有一个 PHP 脚本。我正在监视进程列表,十分钟后它仍在运行。
set_time_limit(30)
由于错误,我的 MySQL 连接可能需要超过 30 秒。我怎样才能让脚本死掉并终止 MySQL 连接?
我正在使用非持久连接 - mysql_connect()。mysql_connect_timeout设置为 60 秒。
mysql_connect()
mysql_connect_timeout
max_input_time是 300 秒。所以我也超过了。
max_input_time
您需要更改 php.ini 中的一些设置:
max_execution_time = 30 ; also, higher if you wish