我正在使用php制作上传功能,效果很好。 只是,因为我的php ini文件中的最大大小是32mb,我无法上传任何大于此的内容。这对我很好。
BUT :
我想阻止在添加到输入文件的所有文件的组合大小超过32mb时上传。
我发现这个脚本在添加文件后会提醒文件大小,这是一个开始:
$(function(){
$('#file').change(function(){
var file=this.files[0]
alert(file.size||file.fileSize)
})
})
但是在测试时我发现它只返回一个文件的大小。 如何更改此代码以返回添加到输入字段的所有文件的大小?还是有另一种方法可以做到这一点吗?
HTML:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Tutorial</title>
<link rel="stylesheet" type="text/css" href="css/tut.css">
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<form action="tutorial.php" method="POST" enctype="multipart/form-data">
<!--<input type="file" name="myFile"><p>
<input type="submit" value="Upload">
<br/><br/>-->
<input type="file" name="files[]" multiple="multiple" id="file"/><p>
<input type="submit" value="Upload" id="submit" />
</form>
</div>
</body>
</html>
PHP代码:
$file_dest = "photos/orig/";
$thumb_dest = "photos/thumbs/";
if(!empty($_FILES['files']['name'][0])){
$files = $_FILES['files'];
$uploaded = array();
$failed = array();
$allowedExt = array('png', 'jpg', 'gif');
foreach($files['name'] as $position => $file_name) {
$file_tmp = $files['tmp_name'][$position];
$file_size = $files['size'][$position];
$file_error = $files['error'][$position];
$file_ext = explode('.', $file_name);
$file_ext = strtolower(end($file_ext));
if(in_array($file_ext, $allowedExt)){
if($file_error == 0){
if($file_size <= 20000000){
$file_name_new = uniqid('', true)."_".$file_name;
$file_move = $file_dest.$file_name_new;
if(move_uploaded_file($file_tmp, $file_move)){
$uploaded[$position] = $file_dest;
}else{
$failed[$position] = "[{$file_name}] failed to upload.";
}
}else{
$failed[$position] = "[{$file_name}] is too large.";
}
}else{
$failed[$position] = "[P$file_name}] errored with code {$file_error}";
}
}else{
$failed[$position] = "[{$file_name}] file extension '{$file_ext}' is not allowed.";
}
}
if(!empty($uploaded)){
print_r($uploaded);
}
if(!empty($failed)){
print_r($failed);
}
}else{
echo "No files were added.";
}
旁注:代码尚未完成,我仍然需要添加安全措施。请忽略它的缺失。
答案 0 :(得分:3)
你可以通过总结尺寸
来做到这一点$(function(){
$('#file').on('change', function(){
var total = [].slice.call(this.files).map(function(x) {
return x.size || x.fileSize;
}).reduce(function(a, b) { return a + b; }, 0);
if ( total > 33554432 ) {
alert('Total size exceeds 32 mb');
}
});
});
答案 1 :(得分:2)
$(function(){
$('#file').change(function(){
var combinedSize = 0;
for(var i=0;i<this.files.length;i++) {
combinedSize += (this.files[i].size||this.files[i].fileSize);
}
alert(combinedSize);
})
})