dongweicha6077 2015-09-21 18:36
浏览 9
已采纳

在PHP中上传多个文件错误

I create a folder for files. I am trying to upload multiple file to this new folder but, my code can't upload the array of files. I could upload one file to the new dir but not multiple. Here is my code.

HTML

 <form method="post" action="upload.php" enctype="multipart/form-data">
    <input name="document_name[]" type="file" multiple/>
    <input name="document_name[]" type="file" multiple/>
    <input name="document_name[]" type="file" multiple/>
    <input type="submit">
 </form>

PHP

$path = 'CreateFolder';

if (!is_dir($path)) {
    mkdir($path);
}

for ($i = 0; $i < count($_FILES["document_name"]["name"]); $i++) {


    $upload_dir = 'C:myDir\\' . $path . '\\';
    $document_url = $upload_dir . basename($_FILES["document_name"]["name"][$i]);

    echo $document_url;//test url

    $type_of_document = pathinfo($document_url, PATHINFO_EXTENSION);//any type allow

    if (move_uploaded_file($_FILES["document_name"]["tmp_name"][$i], $document_url)) {

        echo 'Uploaded!';
    } else {
        echo "Sorry, there was an error uploading your file. <br/>";

    }
}

I follow other answers that I found online. One of those answers suggest me to use 3 different names, okey cool, but I would like to learn to do it using an array and a for loop.

The only thing that I am getting back is

Sorry, there was an error uploading your file

Thank you!

  • 写回答

1条回答 默认 最新

  • douyi4991 2015-09-21 18:45
    关注

    The problem is your path. I would do it like this:

    $upload_dir = dirname(__FILE__) . DIRECTORY_SEPARATOR . $path;
    

    and $document_url :

    $document_url = $upload_dir . DIRECTORY_SEPARATOR . basename($_FILES["document_name"]["name"][$i]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵