Home > Backend Development > PHP Tutorial > 关于下传文件大小的有关问题,

关于下传文件大小的有关问题,

WBOY
Release: 2016-06-13 10:44:34
Original
920 people have browsed it

关于上传文件大小的问题,求助!
当上传文件大小比php.ini 中 upload_max_filesize 选项限制的值还大时,程序是不是就不往下运行了?

我在php.ini 中设置的 upload_max_filesize 的值为2M,

然后我上传的文件大小也不能大于2M,

提交表单后,在后台判断文件大小,如果大于2M就提示错误,否则不提示。

但是我在上传文件时直接上传了个3M的文件,然后程序没反应了,

请问,当上传文件大小比php.ini 中 upload_max_filesize 的值还大时,程序有什么反应?

应该如何获取到这个错误并提示用户?

------解决方案--------------------
你不是说给出了判断了吗? 
另外注意,也不能超过 post_max_size 的大小。一般上 upload_max_filesize------解决方案--------------------
判断上传文件的大小,$_FILE['name']['size']
------解决方案--------------------
2MB=2097152B
------解决方案--------------------
你试一下,把结果讲下

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template