VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php文件上传类程序代码

我们现在只要搜索文件上传类有大把,但是真正好用的上传类不多,下面我介绍这个文件上传类是我自己使用了很久,非常不错的一个代码,大家可参考参考.

php文件上传类程序代码如下:

  1. <?php 
  2.  /** 
  3.   * 文件上传类 
  4.   */ 
  5.  class uploadFile { 
  6.  
  7.     public $max_size = '1000000';//设置上传文件大小 
  8.     public $file_name = 'date';//重命名方式代表以时间命名,其他则使用给予的名称 
  9.     public $allow_types;//允许上传的文件扩展名,不同文件类型用“|”隔开 
  10.     public $errmsg = '';//错误信息 
  11.     public $uploaded = '';//上传后的文件名(包括文件路径) 
  12.     public $save_path;//上传文件保存路径 
  13.     private $files;//提交的等待上传文件 
  14.     private $file_type = array();//文件类型 
  15.     private $ext = '';//上传文件扩展名 
  16.  
  17.     /** 
  18.      * 构造函数,初始化类 
  19.      * @access public 
  20.      * @param string $file_name 上传后的文件名 
  21.      * @param string $save_path 上传的目标文件夹 
  22.      */ 
  23.     public function __construct($save_path = './upload/',$file_name = 'date',$allow_types = '') { 
  24.         $this->file_name   = $file_name;//重命名方式代表以时间命名,其他则使用给予的名称 
  25.         $this->save_path   = (preg_match('//$/',$save_path)) ? $save_path : $save_path . '/'
  26.         $this->allow_types = $allow_types == '' ? 'jpg|gif|png|zip|rar' : $allow_types
  27.     } 
  28.  
  29.     /** 
  30.      * 上传文件 
  31.      * @access public 
  32.      * @param $files 等待上传的文件(表单传来的$_FILES[]) 
  33.      * @return boolean 返回布尔值 
  34.      */ 
  35.     public function upload_file($files) { 
  36.         $name = $files['name']; 
  37.         $type = $files['type']; 
  38.         $size = $files['size']; 
  39.         $tmp_name = $files['tmp_name']; 
  40.         $error = $files['error']; 
  41.  
  42.         switch ($error) { 
  43.             case 0 : $this->errmsg = ''
  44.                 break
  45.             case 1 : $this->errmsg = '超过了php.ini中文件大小'
  46.                 break
  47.             case 2 : $this->errmsg = '超过了MAX_FILE_SIZE 选项指定的文件大小'
  48.                 break
  49.             case 3 : $this->errmsg = '文件只有部分被上传'
  50.                 break
  51.             case 4 : $this->errmsg = '没有文件被上传'
  52.                 break
  53.             case 5 : $this->errmsg = '上传文件大小为0'
  54.                 break
  55.             default : $this->errmsg = '上传文件失败!'
  56.                 break
  57.             } 
  58.         if($error == 0 && is_uploaded_file($tmp_name)) { 
  59.             //检测文件类型 
  60.             if($this->check_file_type($name) == FALSE){ 
  61.                 return FALSE; 
  62.             }//开源代码phpfensi.com 
  63.             //检测文件大小 
  64.             if($size > $this->max_size){ 
  65.                 $this->errmsg = '上传文件<font color=red>'.$name.'</font>太大,最大支持<font color=red>'.ceil($this->max_size/1024).'</font>kb的文件'
  66.                 return FALSE; 
  67.             } 
  68.             $this->set_save_path();//设置文件存放路径 
  69.             $new_name = $this->file_name != 'date' ? $this->file_name.'.'.$this->ext : date('YmdHis').'.'.$this->ext;//设置新文件名 
  70.             $this->uploaded = $this->save_path.$new_name;//上传后的文件名 
  71.             //移动文件 
  72.             if(move_uploaded_file($tmp_name,$this->uploaded)){ 
  73.                 $this->errmsg = '文件<font color=red>'.$this->uploaded.'</font>上传成功!'
  74.                 return TRUE; 
  75.             }else
  76.                 $this->errmsg = '文件<font color=red>'.$this->uploaded.'</font>上传失败!'
  77.                 return FALSE; 
  78.             } 
  79.  
  80.         } 
  81.     } 
  82.  
  83.     /** 
  84.      * 检查上传文件类型 
  85.      * @access public 
  86.      * @param string $filename 等待检查的文件名 
  87.      * @return 如果检查通过返回TRUE 未通过则返回FALSE和错误消息 
  88.      */ 
  89.     public function check_file_type($filename){ 
  90.         $ext = $this->get_file_type($filename); 
  91.         $this->ext = $ext
  92.         $allow_types = explode('|',$this->allow_types);//分割允许上传的文件扩展名为数组 
  93.         //echo $ext; 
  94.         //检查上传文件扩展名是否在请允许上传的文件扩展名中 
  95.         if(in_array($ext,$allow_types)){ 
  96.             return TRUE; 
  97.         }else
  98.             $this->errmsg = '上传文件<font color=red>'.$filename.'</font>类型错误,只支持上传<font color=red>'.str_replace('|',',',$this->allow_types).'</font>等文件类型!'
  99.             return FALSE; 
  100.         } 
  101.     } 
  102.  
  103.     /** 
  104.      * 取得文件类型 
  105.      * @access public 
  106.      * @param string $filename 要取得文件类型的目标文件名 
  107.      * @return string 文件类型 
  108.      */ 
  109.     public function get_file_type($filename){ 
  110.         $info = pathinfo($filename); 
  111.         $ext = $info['extension']; 
  112.         return $ext
  113.     } 
  114.  
  115.     /** 
  116.      * 设置文件上传后的保存路径 
  117.      */ 
  118.     public function set_save_path(){ 
  119.         $this->save_path = (preg_match('//$/',$this->save_path)) ? $this->save_path : $this->save_path . '/'
  120.         if(!is_dir($this->save_path)){ 
  121.             //如果目录不存在,创建目录 
  122.             $this->set_dir(); 
  123.         } 
  124.     } 
  125.  
  126.  
  127.     /** 
  128.      * 创建目录 
  129.      * @access public 
  130.      * @param string $dir 要创建目录的路径 
  131.      * @return boolean 失败时返回错误消息和FALSE 
  132.      */ 
  133.     public function set_dir($dir = null){ 
  134.         //检查路径是否存在 
  135.         if(!$dir){ 
  136.             $dir = $this->save_path; 
  137.         } 
  138.         if(is_dir($dir)){ 
  139.             $this->errmsg = '需要创建的文件夹已经存在!'
  140.         } 
  141.         $dir = explode('/'$dir); 
  142.         foreach($dir as $v){ 
  143.             if($v){ 
  144.                 $d .= $v . '/'
  145.                 if(!is_dir($d)){ 
  146.                     $state = mkdir($d, 0777); 
  147.                     if(!$state
  148.                         $this->errmsg = '在创建目录<font color=red>' . $d . '时出错!'
  149.                 } 
  150.             } 
  151.         } 
  152.         return true; 
  153.     } 
  154.  } 
  155.  
  156. /************************************************* 
  157.  * 图片处理类 
  158.  * 
  159.  * 可以对图片进行生成缩略图,打水印等操作 
  160.  * 本类默认编码为UTF8 如果要在GBK下使用请将img_mark方法中打中文字符串水印iconv注释去掉 
  161.  * 
  162.  * 由于UTF8汉字和英文字母大小(像素)不好确定,在中英文混合出现太多时可能会出现字符串偏左 
  163.  * 或偏右,请根据项目环境对get_mark_xy方法中的$strc_w = strlen($this->mark_str)*7+5进 
  164.  * 行调整 
  165.  * 需要GD库支持,为更好使用本类推荐使用GD库2.0+ 
  166.  * 
  167.  * @author kickflip@php100 QQ263340607 
  168.  *************************************************/ 
  169.  
  170.  class uploadImg extends uploadFile { 
  171.  
  172.     public $mark_str = 'kickflip@php100';  //水印字符串 
  173.     public $str_r = 0; //字符串颜色R 
  174.     public $str_g = 0; //字符串颜色G 
  175.     public $str_b = 0; //字符串颜色B 
  176.     public $mark_ttf = './upload/SIMSUN.TTC'//水印文字字体文件(包含路径) 
  177.     public $mark_logo = './upload/logo.png';    //水印图片 
  178.     public $resize_h;//生成缩略图高 
  179.     public $resize_w;//生成缩略图宽 
  180.     public $source_img;//源图片文件 
  181.     public $dst_path = './upload/';//缩略图文件存放目录,不填则为源图片存放目录 
  182.  
  183.     /** 
  184.      * 生成缩略图 生成后的图 
  185.      * @access public 
  186.      * @param integer $w 缩小后图片的宽(px) 
  187.      * @param integer $h 缩小后图片的高(px) 
  188.      * @param string $source_img 源图片(路径+文件名) 
  189.      */ 
  190.     public function img_resized($w,$h,$source_img = NULL){ 
  191.         $source_img = $source_img == NULL ? $this->uploaded : $source_img;//取得源文件的地址,如果为空则默认为上次上传的图片 
  192.         if(!is_file($source_img)) { //检查源图片是否存在 
  193.             $this->errmsg = '文件'.$source_img.'不存在'
  194.             return FALSE; 
  195.         } 
  196.         $this->source_img = $source_img
  197.         $img_info = getimagesize($source_img); 
  198.         $source = $this->img_create($source_img); //创建源图片 
  199.         $this->resize_w = $w
  200.         $this->resize_h = $h
  201.         $thumb = imagecreatetruecolor($w,$h); 
  202.         imagecopyresized($thumb,$source,0,0,0,0,$w,$h,$img_info[0],$img_info[1]);//生成缩略图片 
  203.         $dst_path = $this->dst_path == '' ? $this->save_path : $this->dst_path; //取得目标文件夹路径 
  204.         $dst_path = (preg_match('//$/',$dst_path)) ? $dst_path : $dst_path . '/';//将目标文件夹后加上/ 
  205.         if(!is_dir($dst_path)) $this->set_dir($dst_path); //如果不存在目标文件夹则创建 
  206.         $dst_name = $this->set_newname($source_img); 
  207.         $this->img_output($thumb,$dst_name);//输出图片 
  208.         imagedestroy($source); 
  209.         imagedestroy($thumb); 
  210.     } 
  211.  
  212.     /** 
  213.      *打水印 
  214.      *@access public 
  215.      *@param string $source_img 源图片路径+文件名 
  216.      *@param integer $mark_type 水印类型(1为英文字符串,2为中文字符串,3为图片logo,默认为英文字符串) 
  217.      *@param integer $mark_postion 水印位置(1为左下角,2为右下角,3为左上角,4为右上角,默认为右下角); 
  218.      *@return 打上水印的图片 
  219.      */ 
  220.     public function img_mark($source_img = NULL,$mark_type = 1,$mark_postion = 2) { 
  221.         $source_img = $source_img == NULL ? $this->uploaded : $source_img;//取得源文件的地址,如果为空则默认为上次上传的图片 
  222.         if(!is_file($source_img)) { //检查源图片是否存在 
  223.             $this->errmsg = '文件'.$source_img.'不存在'
  224.             return FALSE; 
  225.         } 
  226.         $this->source_img = $source_img
  227.         $img_info = getimagesize($source_img); 
  228.         $source = $this->img_create($source_img); //创建源图片 
  229.         $mark_xy = $this->get_mark_xy($mark_postion);//取得水印位置 
  230.         $mark_color = imagecolorallocate($source,$this->str_r,$this->str_g,$this->str_b); 
  231.  
  232.         switch($mark_type) { 
  233.  
  234.             case 1 : //加英文字符串水印 
  235.             $str = $this->mark_str; 
  236.             imagestring($source,5,$mark_xy[0],$mark_xy[1],$str,$mark_color); 
  237.             $this->img_output($source,$source_img); 
  238.             break
  239.  
  240.             case 2 : //加中文字符串水印 
  241.             if(!is_file($this->mark_ttf)) { //检查字体文件是否存在 
  242.                 $this->errmsg = '打水印失败:字体文件'.$this->mark_ttf.'不存在!'
  243.             return FALSE; 
  244.             } 
  245.             $str = $this->mark_str; 
  246.             //$str = iconv('gbk','utf-8',$str);//转换字符编码 如果使用GBK编码请去掉此行注释 
  247.             imagettftext($source,12,0,$mark_xy[2],$mark_xy[3],$mark_color,$this->mark_ttf,$str); 
  248.             $this->img_output($source,$source_img); 
  249.             break
  250.  
  251.             case 3 : //加图片水印 
  252.             if(is_file($this->mark_logo)){  //如果存在水印logo的图片则取得logo图片的基本信息,不存在则退出 
  253.                 $logo_info = getimagesize($this->mark_logo); 
  254.             }else
  255.                 $this->errmsg = '打水印失败:logo文件'.$this->mark_logo.'不存在!'
  256.                 return FALSE; 
  257.             } 
  258.  
  259.             $logo_info = getimagesize($this->mark_logo); 
  260.             if($logo_info[0]>$img_info[0] || $logo_info[1]>$img_info[1]) { //如果源图片小于logo大小则退出 
  261.                 $this->errmsg = '打水印失败:源图片'.$this->source_img.'比'.$this->mark_logo.'小!'
  262.                 return FALSE; 
  263.             } 
  264.  
  265.             $logo = $this->img_create($this->mark_logo); 
  266.             imagecopy ( $source$logo$mark_xy[4], $mark_xy[5], 0, 0, $logo_info[0], $logo_info[1]); 
  267.             $this->img_output($source,$source_img); 
  268.             break
  269.  
  270.             default//其它则为文字图片 
  271.             $str = $this->mark_str; 
  272.             imagestring($source,5,$mark_xy[0],$mark_xy[1],$str,$mark_color); 
  273.             $this->img_output($source,$source_img); 
  274.             break
  275.         } 
  276.         imagedestroy($source); 
  277.     } 
  278.  
  279.     /** 
  280.      * 取得水印位置 
  281.      * @access private 
  282.      * @param integer $mark_postion 水印的位置(1为左下角,2为右下角,3为左上角,4为右上角,其它为右下角) 
  283.      * @return array $mark_xy 水印位置的坐标(索引0为英文字符串水印坐标X,索引1为英文字符串水印坐标Y, 
  284.      * 索引2为中文字符串水印坐标X,索引3为中文字符串水印坐标Y,索引4为水印图片坐标X,索引5为水印图片坐标Y) 
  285.      */ 
  286.     private function get_mark_xy($mark_postion){ 
  287.         $img_info = getimagesize($this->source_img); 
  288.  
  289.         $stre_w = strlen($this->mark_str)*9+5 ; //水印英文字符串的长度(px)(5号字的英文字符大小约为9px 为了美观再加5px) 
  290.         //(12号字的中文字符大小为12px,在utf8里一个汉字长度为3个字节一个字节4px 而一个英文字符长度一个字节大小大约为9px 
  291.         // 为了在中英文混合的情况下显示完全 设它的长度为字节数*7px) 
  292.         $strc_w = strlen($this->mark_str)*7+5 ; //水印中文字符串的长度(px) 
  293.  
  294.         if(is_file($this->mark_logo)){ //如果存在水印logo的图片则取得logo图片的基本信息 
  295.             $logo_info = getimagesize($this->mark_logo); 
  296.         } 
  297.  
  298.         //由于imagestring函数和imagettftext函数中对于字符串开始位置不同所以英文和中文字符串的Y位置也有所不同 
  299.         //imagestring函数是从文字的左上角为参照 imagettftext函数是从文字左下角为参照 
  300.         switch($mark_postion){ 
  301.  
  302.             case 1: //位置左下角 
  303.             $mark_xy[0] = 5; //水印英文字符串坐标X 
  304.             $mark_xy[1] = $img_info[1]-20;//水印英文字符串坐标Y 
  305.             $mark_xy[2] = 5; //水印中文字符串坐标X 
  306.             $mark_xy[3] = $img_info[1]-5;//水印中文字符串坐标Y 
  307.             $mark_xy[4] = 5;//水印图片坐标X 
  308.             $mark_xy[5] = $img_info[1]-$logo_info[1]-5;//水印图片坐标Y 
  309.             break
  310.  
  311.             case 2: //位置右下角 
  312.             $mark_xy[0] = $img_info[0]-$stre_w//水印英文字符串坐标X 
  313.             $mark_xy[1] = $img_info[1]-20;//水印英文字符串坐标Y 
  314.             $mark_xy[2] = $img_info[0]-$strc_w//水印中文字符串坐标X 
  315.             $mark_xy[3] = $img_info[1]-5;//水印中文字符串坐标Y 
  316.             $mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印图片坐标X 
  317.             $mark_xy[5] = $img_info[1]-$logo_info[1]-5;//水印图片坐标Y 
  318.             break
  319.  
  320.             case 3: //位置左上角 
  321.             $mark_xy[0] = 5; //水印英文字符串坐标X 
  322.             $mark_xy[1] = 5;//水印英文字符串坐标Y 
  323.             $mark_xy[2] = 5; //水印中文字符串坐标X 
  324.             $mark_xy[3] = 15;//水印中文字符串坐标Y 
  325.             $mark_xy[4] = 5;//水印图片坐标X 
  326.             $mark_xy[5] = 5;//水印图片坐标Y 
  327.             break
  328.  
  329.             case 4: //位置右上角 
  330.             $mark_xy[0] = $img_info[0]-$stre_w//水印英文字符串坐标X 
  331.             $mark_xy[1] = 5;//水印英文字符串坐标Y 
  332.             $mark_xy[2] = $img_info[0]-$strc_w//水印中文字符串坐标X 
  333.             $mark_xy[3] = 15;//水印中文字符串坐标Y 
  334.             $mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印图片坐标X 
  335.             $mark_xy[5] = 5;//水印图片坐标Y 
  336.             break
  337.  
  338.             default : //其它默认为右下角 
  339.             $mark_xy[0] = $img_info[0]-$stre_w//水印英文字符串坐标X 
  340.             $mark_xy[1] = $img_info[1]-5;//水印英文字符串坐标Y 
  341.             $mark_xy[2] = $img_info[0]-$strc_w//水印中文字符串坐标X 
  342.             $mark_xy[3] = $img_info[1]-15;//水印中文字符串坐标Y 
  343.             $mark_xy[4] = $img_info[0]-$logo_info[0]-5;//水印图片坐标X 
  344.             $mark_xy[5] = $img_info[1]-$logo_info[1]-5;//水印图片坐标Y 
  345.             break
  346.         } 
  347.         return $mark_xy
  348.     } 
  349.  
  350.     /** 
  351.      * 创建源图片 
  352.      * @access private 
  353.      * @param string $source_img 源图片(路径+文件名) 
  354.      * @return img 从目标文件新建的图像 
  355.      */ 
  356.     private function img_create($source_img) { 
  357.         $info = getimagesize($source_img); 
  358.         switch ($info[2]){ 
  359.             case 1: 
  360.             if(!function_exists('imagecreatefromgif')){ 
  361.                 $source = @imagecreatefromjpeg($source_img); 
  362.             }else
  363.                 $source = @imagecreatefromgif($source_img); 
  364.             } 
  365.             break
  366.             case 2: 
  367.             $source = @imagecreatefromjpeg($source_img); 
  368.             break
  369.             case 3: 
  370.             $source = @imagecreatefrompng($source_img); 
  371.             break
  372.             case 6: 
  373.             $source = @imagecreatefromwbmp($source_img); 
  374.             break
  375.             default
  376.             $source = FALSE; 
  377.             break
  378.         } 
  379.         return $source
  380.     } 
  381.  
  382.  /** 
  383.   * 重命名图片 
  384.   * @access private 
  385.   * @param string $source_img 源图片路径+文件名 
  386.   * @return string $dst_name 重命名后的图片名(路径+文件名) 
  387.   */ 
  388.  private function set_newname($sourse_img) { 
  389.     $info = pathinfo($sourse_img); 
  390.     $new_name = $this->resize_w.'_'.$this->resize_h.'_'.$info['basename'];//将文件名修改为:宽_高_文件名 
  391.     if($this->dst_path == ''){ //如果存放缩略图路径为空则默认为源文件同文件夹 
  392.         $dst_name = str_replace($info['basename'],$new_name,$sourse_img); 
  393.     }else
  394.         $dst_name = $this->dst_path.$new_name
  395.     } 
  396.     return $dst_name
  397.  } 
  398.  
  399.  /** 
  400.   * 输出图片 
  401.   * @access private 
  402.   * @param $im 处理后的图片 
  403.   * @param $dst_name 输出后的的图片名(路径+文件名) 
  404.   * @return 输出图片 
  405.   */ 
  406.  public function img_output($im,$dst_name) { 
  407.     $info = getimagesize($this->source_img); 
  408.     switch ($info[2]){ 
  409.             case 1: 
  410.             if(!function_exists('imagegif')){ 
  411.                 imagejpeg($im,$dst_name); 
  412.             }else
  413.                 imagegif($im$dst_name); 
  414.             } 
  415.             break
  416.             case 2: 
  417.             imagejpeg($im,$dst_name); 
  418.             break
  419.             case 3: 
  420.             imagepng($im,$dst_name); 
  421.             break
  422.             case 6: 
  423.             imagewbmp($im,$dst_name); 
  424.             break
  425.         } 
  426.  } 
  427.  
  428.  } 
  429. ?> 

使用方法,代码如下:

  1. <!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>上传文件</title></head><body leftmargin="0" topmargin="0"><table cellpadding="2" cellspacing="1" border="0" height="100%" align="left"><form action='wend.php?action=upload'  method='post' enctype='multipart/form-data'><tr ><td  valign='middle'><input type='file' name='uploadfile'><input name='submit' type='submit' value='上传'></td></tr></form></table</body></html> 

php处理文件,调用上面的类文件,然后再如下操作,代码如下:

  1. $action = addslashes($_GET['action']); 
  2. if$action =="udd"
  3.  $state=uploadfile('uploadfile'); 
  4.  //echo $state['err'];exit; 
  5.  if($state['err']){ 
  6.   die('<script>alert("上传出错:'.$state['err'].'");history.go(-1);</script>'); 
  7.  } 
  8.  else 
  9.  { 
  10.   echo '文件己上传!<a href="upp.php">删除重传</a>'
  11.    
  12.  } 
  13.  
  14.  
  15. else
  16.  echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
  17.  echo '<html xmlns="http://www.w3.org/1999/xhtml">'
  18.  echo '<head>'
  19.  echo '<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />'
  20.  echo '<title>上传文件</title>'
  21.  //echo "<meta http-equiv="content-type" content="text/html; charset=gb2312">"; 
  22.  echo '</head>'
  23.  echo "<body leftmargin="0" topmargin="0">"
  24.  echo "<table cellpadding="2" cellspacing="1" border="0" height="100%" align="left">"
  25.  echo "<form action='abc.php?action=udd'  method='post' enctype='multipart/form-data'>"
  26.  echo "<tr ><td  valign='middle'>"
  27.  echo "<input type='file' name='uploadfile'>"
  28.  echo "<input name='submit' type='submit' value='上传'>"
  29.  echo "</td></tr>"
  30.  echo "</form>"
  31.  echo "</table"
  32.  echo "</body>"
  33.  echo '</html>'
  34.  


出处:http://www.phpfensi.com/php/20140828/4896.html

 


相关教程