php文件上传代码(支持文件批量上传)
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-19 10:25:32 浏览: 评论:0
本款文件上传类,默认是上传单文件的,我们只要修改$inputname ='files'为你的表单名就可以方便的实现批量文件上传了,$savename = ''保存文件名, $alowexts = array()设置允许上传的类型,$savepath = ''保存路径。
- */
- class upload
- {
- public $savepath;
- public $files;
- private $error;
- function __construct($inputname ='files', $savepath = '', $savename = '', $alowexts = array(),$maxsize = 1024000)
- {
- if(!$alowexts)$alowexts=explode('|',upload_ftype);
- $file_array=array();
- $savepath=str_replace('','/',$savepath);
- $savename=preg_replace('/[^a-z0-9_]+/i','',$savename);
- $this->savepath=substr($savepath,-1)=='/'?$savepath:$savepath.'/'; //路径名以/结尾
- if(!make_dir($this->savepath))
- {
- $this->error=8;
- $this->error();
- }
- //exit($this->savepath);
- if(!is_writeable($this->savepath))
- {
- $this->error=9;
- $this->error();
- }
- if(sizeof($_files[$inputname]['error'])>10)
- {
- $this->error=13;
- $this->error();
- }
- $max=sizeof($_files[$inputname]['error'])-1;
- //exit($this->savepath.$savename);
- foreach($_files[$inputname]['error'] as $key => $error)
- {
- if($error==upload_err_ok) //批量上传
- {
- $savename=$savename?$savename:date('ymdims').mt_rand(10000,99999);
- $fileext=strtolower(get_fileext($_files[$inputname]['name'][$key]));
- $savename=$savename.'.'.$fileext;
- $tmp_name=$_files[$inputname]['tmp_name'][$key];
- $filesize=$_files[$inputname]['size'][$key];
- if(!in_array($fileext,$alowexts))
- {
- $this->error=10;
- $this->error();
- }
- if($filesize>$maxsize)
- {
- $this->error=11;
- $this->error();
- }
- if(!$this->isuploadedfile($tmp_name))
- {
- $this->error=12;
- $this->error();
- }
- if(move_uploaded_file($tmp_name,$this->savepath.$savename) || @copy($tmp_name,$this->savepath.$savename))
- {
- //exit($this->savepath.$savename);
- @chmod($savename, 0644);
- @unlink($tmp_name);
- $file_array[]=$this->savepath.$savename;
- }
- }
- else
- {
- $this->error=$error;
- $this->error();
- }
- unset($savename);
- }
- $this->files=$file_array;
- return true;
- }
- function isuploadedfile($file) //去掉系统自带的反斜线
- {
- return (is_uploaded_file($file) || is_uploaded_file(str_replace('\','',$file)));
- }
- function error()
- {
- $upload_error=array(0 => '文件上传成功 !',
- 1 => '上传的文件超过了 php.ini 中 upload_max_filesize 选项限制的值 !',
- 2 => '上传文件的大小超过了 html 表单中 max_file_size 选项指定的值 !',
- 3 => '文件只有部分被上传 !',
- 4 => '没有文件被上传 !',
- 5 => '未知错误!',
- 6 => '找不到临时文件夹。 !',
- 7 => '文件写入临时文件夹失败 !',
- 8 => '附件目录创建失败 !',
- 9 => '附件目录没有写入权限 !',
- 10 => '不允许上传该类型文件 !',
- 11 => '文件超过了管理员限定的大小 !',
- 12 => '非法上传文件 !',
- 13 => '最多可同时上传10个文件 !'
- );
- showmsg($upload_error[$this->error]);
- }
- }
- //使用方法
- new upload();
Tags: 文件上传 代码 批量上传
- 上一篇:php文件上传程序
- 下一篇:php初学者用文件上传实例
相关文章
- ·php实现文件上传的程序代码(2013-11-13)
- ·php 实现多文件上传程序代码(2013-11-13)
- ·php中实现图片文件上传程序代码(2013-11-14)
- ·PHP多文件上传(2013-12-09)
- ·php 文件上传实例代码(2013-12-16)
- ·php文件上传程序(2013-12-16)
- ·php iframe 无刷新文件上传代码(2013-12-23)
- ·iframe无刷新文件上传实现程序(2014-01-05)
- ·php文件上传的应用和原理详解(2014-02-10)
- ·php文件上传之php.ini配置上传文件详解(2014-03-02)
- ·PHP文件上传详解(2014-03-02)
- ·php文件上传入门级代码(2014-05-12)
- ·php最简单文件上传代码(2014-05-21)
- ·php 入门级文件上传详解(2014-05-23)
- ·php文件上传move_uploaded_file函数(2014-06-03)
- ·超简单的php文件上传程序(2014-06-05)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)