php如何限制图片上传大小
如何限制图片大小 我应该在哪里插入代码? 我可以上传图片,但只能上传并显示 4 张图片。 我能做什么来解决它?
How do I restrict the picture size
and where do I insert the code in?
I can manage to upload pictures but it only can upload and display 4 pictures.
what can I do to solve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用 PHP 上传文件时,上传时可用的信息位于数组中:$_FILES['image'](图像是表单中输入的文件的名称)。该数组包含一些有用的信息:(复制自:http://php.net/ Manual/en/reserved.variables.files.php)
[size] 将为您提供文件大小(以字节为单位)。如果您想根据尺寸处理上传,则必须先完成上传,然后使用 PHP 函数 getimagesize 检查尺寸
When you upload files using PHP the information available while uploading is in array: $_FILES['image'] (image is the name of the file input in your form). This array contains some useful information: (copied from: http://php.net/manual/en/reserved.variables.files.php)
[size] would give you the filesize in bytes. If you want to deal with the upload based on it's dimensions you will have to finish the upload first and then check dimensions using PHP function: getimagesize