IsaacZ 发表于 2011-4-28 22:14:40

解决 Fatal error: Maximum execution time of 30 seconds exceeded

【转贴】


当系统数据库中的数据量大了后,用户访问请求时就出现了如下错误:
Fatal error: Maximum execution time of 30 seconds exceeded
译为:
致命错误:超过程序执行时间的最大许可范围:30秒

出现这个错误如何解决?去哪里可以设置最大执行时间?

答:

修改php.ini, 找到::
max_execution_time = 30 修改为:
max_execution_time = 30
保存,然后重启服务

或者在程序中写:
set_time_limit(时间);// 0为无限制
示例:
set_time_limit(0);
页: [1]
查看完整版本: 解决 Fatal error: Maximum execution time of 30 seconds exceeded