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.
有些文件必须上传到系统。主要是 5-10MB 的 JPG 文件。但是,用户通常上传速度很慢,所以大部分时间都超过了 max_execution_time()。
我无权修改 max_execution_time()
这个案子有什么我可以做的吗?
尝试设置使用ini_set():
ini_set()
$max_execution_time = 1000; // or whatever value you need ini_set('max_execution_time', $max_execution_time);