两种办法:
一种是修改php配置文件php.ini
将其中的max_execution_time改为指定时间
保存后重启Apache既可。
另一种是直接在php文件中指定:
set_time_limit(时间); //0为无限制
set_time_limit ( int $seconds )
未经允许不得转载:阿藏博客 » Apache-PHP如何避免超时
两种办法:
一种是修改php配置文件php.ini
将其中的max_execution_time改为指定时间
保存后重启Apache既可。
另一种是直接在php文件中指定:
set_time_limit(时间); //0为无限制
set_time_limit ( int $seconds )
未经允许不得转载:阿藏博客 » Apache-PHP如何避免超时