php 多个文件上传
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-05 13:08:25 浏览: 评论:0
多个文件上传功能,其实很简单与单文件上传区别就是文件名用数组形式,然后获取上传的文件时就利用foreach来个个上传,这样就实现了文件批量上传的功能了,其实也是单文件,只是看上去是多个文件同时上传了.
PHP实例源码如下:
- <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=gb2312" />
- <title>php 多个文件上传</title>
- </head>
- <body>
- <form action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
- <p>
- <label for="select"></label>
- <label for="filefield"></label>
- <input type="file" name="name[]" id="filefield" />
- </p>
- <p>
- <input type="file" name="name[]" id="filefield2" />
- </p>
- <p>
- <input type="file" name="name[]" id="filefield3" />
- </p>
- <p>
- <input type="file" name="name[]" id="filefield4" />
- </p>
- <p>
- <input type="file" name="name[]" id="filefield5" />
- </p>
- <p>
- <input type="submit" name="button" id="button" value="批量文件上传" />
- </p>
- </form>
- </body>
- </html>
- <?php
- foreach($_files as $f)
- {
- //处理中文名
- if (function_exists("iconv")) $f[name] = iconv("utf-8","gb2312",$f[name]);
- $unm=intval(mt_rand(1000,9999));
- $file="z_upload/".date("ymdhms").$unm.$f[name];
- //检查是否已经存在同名文件
- if (file_exists($file)) header("http/1.0 403");
- //保存文件
- if (!@move_uploaded_file($f["tmp_name"],$file))
- {
- header("http/1.0 404 not found");
- }else{
- if(!isset($_cookie['uploadpic'])){
- setcookie("uploadpic",$file);
- }else{
- unlink($_cookie['uploadpic']);
- setcookie("uploadpic","");
- setcookie("uploadpic",$file);
- }
- echo "1";
- }
- }
- ?>
Tags: php 多个文件上传
- 上一篇:超简单的php文件上传程序
- 下一篇:php获取上传文件类型 获取文件后缀
相关文章
- ·php实现文件上传的程序代码(2013-11-13)
- ·php 实现多文件上传程序代码(2013-11-13)
- ·php+CKFinder上传中文名文件乱码问题的解决方法(2013-11-14)
- ·php中检测上传文件类型与上传图片大小代码(2013-11-14)
- ·php上传图片失败原图(2013-11-28)
- ·CKEditor+CKFinder+php上传文件配置方法(2013-12-02)
- ·PHP多文件上传(2013-12-09)
- ·php 文件上传实例代码(2013-12-16)
- ·php文件上传程序(2013-12-16)
- ·php初学者用文件上传实例(2013-12-23)
- ·php上传文件与图片重命名方法总结(2014-01-06)
- ·如何设置PHP上传文件大小限制(2014-01-06)
- ·PHP文件下载的小实例(2014-01-11)
- ·php获取上传文件名的文件类型(2014-01-15)
- ·多图片上传的php代码(2014-01-15)
- ·php文件上传之php.ini配置上传文件详解(2014-03-02)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)