我们正在使用多文件上传插件,我们希望使用 move_uploaded_file() 将其保存到服务器,并在成功上传后发送带有所有文件直接链接的邮件。我们正在获取以下数组...
Array
(
[html5_uploader_0_tmpname] => p15rkfr6oogdt1ln91t0r4obrrh3.jpg
[html5_uploader_0_name] => show_041.jpg
[html5_uploader_0_status] => done
[html5_uploader_1_tmpname] => p15rkfr8mb1plfu4q1giu3v01jl74.jpg
[html5_uploader_1_name] => 23.jpg
[html5_uploader_1_status] => done
[html5_uploader_count] => 2
)
我们正在使用以下代码......
$("#html5_uploader").pluploadQueue({
// General settings
runtimes : 'html5',
url : 'upload.php',
max_file_size : '10mb',
chunk_size : '1mb',
unique_names : true,
filters : [
{title : "Image files", extensions : "jpg,gif,png"},
{title : "Zip files", extensions : "zip"}
],
// Resize images on clientside if we can
//resize : {width : 320, height : 240, quality : 90}
});
}
所以问题是在这个数组的情况下,我们应该在 $_FILES["file"]["tmp_name"] 和 $_FILES["file"]["name"] 的地方传递什么。