我正在尝试上传多个图像文件。如果图像名称是“icon.jpg”,那么它会被移动到与任何其他图像不同的位置 - 这似乎工作正常,但是只有第一张图像被上传和移动。
脚本在第一张图片后停止并显示“查询为空”,即使我尝试上传至少 4 或 5 张其他图片。
$id = '01';
foreach($_FILES['file']['name'] as $n => $image)
if(!empty($image)) {
{
if ($image == 'icon.jpg'){
$target_path = "../images/articles/".$id."_small.jpg";
} else {
$target_path = "../images/galleries/".$id."/pk_hb" . $id.".jpg";
}
move_uploaded_file($_FILES['file']['tmp_name'][$n], $target_path);
$id++;
}
}
我已经包含了我正在使用的动态 JS 上传表单,以防出现以下问题:
<form action="<? echo $_SERVER['PHP_SELF'];?>" enctype="multipart/form-data" method="post" name="add">
Image 1: <input name='file[]' type='file' accept="image/*" />
<div id='file_tools'>
<img src='../images/top/file_add.png' id='add_file' title='Add new input'/>
<img src='../images/top/file_del.png' id='del_file' title='Delete'/>
</div>
<script type='text/javascript'>
$(document).ready(function(){
var counter = 2;
$('#del_file').hide();
$('img#add_file').click(function(){
$('#file_tools').before('Image '+counter+': <input name="file[]" type="file" accept="image/*" />');
$('#del_file').fadeIn(0);
counter++;
});
$('img#del_file').click(function(){
if(counter==3){
$('#del_file').hide();
}
counter--;
$('#f'+counter).remove();
});
});
</script>
<input class="submit" type="submit" name="add" value="Submit" />
</form>
添加了 var_dump($_FILES) 的内容
array(1) {
["file"]=> array(5)
{
["name"]=> array(1) { [0]=> string(11) "cooley1.jpg" }
["type"]=> array(1) { [0]=> string(10) "image/jpeg" }
["tmp_name"]=> array(1) { [0]=> string(18) "/var/tmp/phpLYaj7U" }
["error"]=> array(1) { [0]=> int(0) }
["size"]=> array(1) { [0]=> int(106241) }
}
}