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.
我正在使用 php 上传文件。该文件必须小于一定大小。如果不是,则脚本返回错误。
我注意到 php 将上传的文件存储在(我的情况) C:\Windows\Temp\filename.extension 现在,如果文件超过最大大小,脚本只会返回错误。那么上传的文件会发生什么?php会自动删除它还是我必须这样做?即使文件大小合适,我猜临时文件仍然存在。我应该在我的脚本中删除这个文件吗?
不,来自手册:
如果该文件未被移走或重命名,则该文件将在请求结束时从临时目录中删除。