最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - Getting upload file size before upload - Stack Overflow

programmeradmin1浏览0评论

When the user selects a file to be uploaded, is there a way I can get the exact size of this file before the upload even begins? I'm guessing this needs to be done on the client side with jQuery or JavaScript. Any ideas how?

When the user selects a file to be uploaded, is there a way I can get the exact size of this file before the upload even begins? I'm guessing this needs to be done on the client side with jQuery or JavaScript. Any ideas how?

Share Improve this question edited Jun 30, 2014 at 15:39 Ectropy 1,5414 gold badges22 silver badges37 bronze badges asked Nov 16, 2010 at 3:20 samisami 7,6558 gold badges36 silver badges38 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 5

This cannot be done in pure Javascript in current browsers.

Instead, you can use Uploadify, which uses Flash.

In non-IE browsers, you can also use HTML5 to read files on the client.

$("#file_input_selector").bind('change', function(){
 alert(this.files[0].size);
});

Not sure of all the patibility issues, but this seems to be working just fine for me.

Take a look at this post:

  • http://forums.digitalpoint./showthread.php?t=6704

Javascript doesn't have the ability to check file sizes (or access the file system for that matter). You'll need to upload the file to get the size

I suggest you look at the HTML5 File API. This, bined with some JS might be able to help you. I only say might because I have not yet had a chance to browse at this part of the HTML5 standard.

http://www.w3/TR/FileAPI/#dfn-filereader

The way PHP file uploads work, it is very hard to check file details before, or during a file upload (since the file is uploaded before your code even gets loaded).

I know it is possible to do some fancy things in some other languages (possibly Perl or Python) that handle the file uploading directly with the script (where the script opens the socket and handles the whole transfer itself), however PHP does this for you and accepts any file on your script's behalf. The file gets discarded if it is not within PHP's acceptable limits, but only after the file is pletely uploaded.

There have also been several file upload implementations made using Flash, but not being an ActionScript coder, I can't really help too much there either.

发布评论

评论列表(0)

  1. 暂无评论