日期:2010-11-06 08:57:00 来源:本站整理
php文件上传代码(支持文件批量上传)[网站编程]
本文“php文件上传代码(支持文件批量上传)[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
php文件上传代码(支持文件批量上传)
本款文件上传类,默许是上传单文件的,我们只要改正$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();
以上是“php文件上传代码(支持文件批量上传)[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论