我想上传多张图片。img[]
包含所有要上传的图像文件。这些值已成功插入到内爆的数据库中commas(,)
。但是图像没有上传到名为 . 的指定文件夹photos
中。
<input type="file" name="img[]" id="img[]" />
$n=$_FILES["img"]["name"];
$t=$_FILES["img"]["tmp_name"];
$image=implode(",",$n);
$ex=explode(",",$image);
$i=0;
foreach($ex as $item)
{
move_uploaded_file($_FILES["img[$i]"]["tmp_name"],"photos/$ex[$i]");
$i++;
}