当前位置:七道奇文章资讯网站建设网站编程
日期:2010-12-06 10:47:00  来源:本站整理

php一个实用的文件上传类[网站编程]

赞助商链接



  本文“php一个实用的文件上传类[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

class upload{
/**
* html表单 input 域的 name 属性,默许为'file'
*/
var $file_field = 'file' ;

/**
* $_files 数组
*/
var $file_array;

/**
* 保存途径,默许为当前途径
*/
var $save_path = '';

/**
* 自定义文件名
*/
var $define_name;

/**
* 终究保存的文件名
*/
var $name;

/**
* 文件大小,单位:字节
*/
var $size;

/**
* 文件扩大名,不包含"."
*/
var $ext;

/**
* 答应上传的文件范例,默许不限制
*/
var $allow_ext = array();

/**
* 答应上传的文件范例,默许不限制
*/
var $allow_size = false;

/**
* 假如已存在同名文件,能否答应覆盖,默许不覆盖.
*/
var $overwrite = false;

/**
* 错误提醒
*/
var $error_code;

/**
* 构造函数
*/
public function __construct(){
if(!is_uploaded_file($_files[$this->file_field]['tmp_name'])){
die("不法上传!");
}else{
$this->file_array = $_files[$this->file_field];
$this->name = $this->getpro('name');
$this->size = $this->getpro('size');
$this->ext = $this->getpro('ext');
}
}


/**
* 上传操作函数
* @abstract 上传成功返回 true , 不然返回呼应错误代码
* @return string or bool
*/
public function upload(){
if(is_uploaded_file($this->file_array['tmp_name'])){

if(!empty($this->allow_ext)){
if(!in_array($this->ext,$this->allow_ext)){
$this->error_code = "不答应上传该范例文件!";
return false;
}
}

if(!@file_exists(iconv('utf-8','gbk',$this->save_path))){
$this->error_code = "文件上传目录不存在!";
return false;
}

if(!is_writable(iconv('utf-8','gbk',$this->save_path))){
$this->error_code = "文件上传目录不可写入!";
return false;
}

if($this->overwrite==false && @file_exists(iconv('utf-8','gbk',$this->save_path.$this->name))){
$this->error_code = "该文件已存在!";
return false;
}

if($this->allow_size){
if($this->size > $this->allow_size){
$this->error_code = "文件大小超越系统限制!";
return false;
}
}

$result = @move_uploaded_file($this->file_array['tmp_name'],iconv("utf-8","gbk",$this->save_path.$this->getpro("name")));
if($result){
return true;
}else{
switch($this->file_array['error']){
case 1:
$this->error_code = "上传的文件超越了 upload_max_filesize 选项限制的值!";
break;
case 2:
$this->error_code = "上传文件的大小超越了 max_file_size 选项指定的值!";
break;
case 3:
$this->error_code = "上传历程被中止!";
break;
case 4:
$this->error_code = "没有文件被上传!";
break;
case 6:
$this->error_code = "找不到暂时文件夹!";
break;
case 7:
$this->error_code = "文件写入失利!";
break;
}
return false;
}
}
}

/**
* 上传操作函数
* @abstract 获得文件属性
* @param $itme:string范例,有效输入为name(文件名)、ext(文件扩大名)、size(文件大小)
* @return string
*/
public function getpro($item){
switch($item){
case "name":
$filename = $this->file_array['name'];
return isset($this->define_name) ? $this->define_name.".".$this->ext : $filename;
break;
case "ext":
$filename = $this->file_array['name'];
  以上是“php一个实用的文件上传类[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:

  • php一个实用的文件上传类
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .