直接看代码,
file:system/core/CodeIgniter.php
/*
102 * ------------------------------------------------------
103 * Set a liberal script execution time limit
104 * ------------------------------------------------------
105 */
106 if (function_exists("set_time_limit") == TRUE AND @ini_get("safe_mode") == 0)
107 {
108 echo "1111111\n";
109 @set_time_limit(300);
110 }
这里就限制了脚本执行时间。而改动php.ini等都不起作用。
错误类似:
PHP Fatal error: Maximum execution time of 300 seconds exceeded in /data/webroot/app/system/database/DB_driver.php on line 1409
对于一些线下脚本等,这个明显不合理。个人认为这个限制就应该干掉,让用户自己控制比較好。
还好这时候使用set_time_limit函数还能够重写这个配置。
在自己的脚本里调用set_time_limit就好了。
后面看到以下这个后才发现的,赞一下这个老外:
http://blog.self.li/post/54633314166/codeigniter-timing-out-after-300s-heres-a-solution
版权声明:本文博客原创文章。博客,未经同意,不得转载。