前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >php多文件上传(教你用最少的代码实现):

php多文件上传(教你用最少的代码实现):

作者头像
贵哥的编程之路
发布2022-03-25 20:40:23
7660
发布2022-03-25 20:40:23
举报
文章被收录于专栏:用户7873631的专栏

我使用的是phpstudy哈 在php.ini里面配置.

注意一下,这里,斜杠要写对

upload_tmp_dir代表你的临时目录在哪里哈。这里写不对,就没有效果的哈. 我的在这里

新建一个upload在 F:\6\htdocs下 核心在于,多文件因为多,所以需要是数组,所以遍历即可 1.html

代码语言:javascript
复制
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
<form action="2.php" method="POST" enctype="multipart/form-data">

    <!--<input type="hidden" name="MAX_FILE_SIZE" value="30000" />-->

    Send this file: <input name="file[]" type="file" />
        Send this file: <input name="file[]" type="file" />

    <input type="submit" value="提交" />
</form>

</script>
</body>
</html>

2.php

代码语言:javascript
复制
<?php

    
foreach($_FILES as $file){
        $fileNum=count($file['name']);
       
            for ($i=0; $i < $fileNum; $i++) { 
              
                echo move_uploaded_file($_FILES['file']['tmp_name'][$i],'F:/6/htdocs/upload/'.basename($_FILES['file']['name'][$i]));
  //意思是吧f:6/tmp/图片放到upload里面哈,
            }
      

        
    }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022/03/10 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档