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.
我制作了一个简单的脚本来上传通过简单的 html 表单提交的文件,它适用于小于 5 兆字节的文件。当我上传更大的文件时,他们开始搞砸了。
我认为可能是执行时间太短,所以我使用了这个:set_time_limit(500);
可悲的是,它没有任何区别。
在表单中,我有一个隐藏的输入,可以帮助我检测表单是否已提交接下来,我检查了 apache 错误日志,发现该输入为空,所以看起来很长的执行时间会丢失其他值..
有什么简单的解决方案吗?还是我应该更改检测表单是否已提交的方式?
谢谢
请检查 php.ini 中的 php 设置以获取 post_max_size = 的最大帖子大小?