当前位置:首页 > PHP教程 > php上传下载 > 列表

php文件图片上传类

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-09 13:41:58 浏览: 评论:0 

这款文件上传实用代码,可以方便的上传你指定的文件或图片,同时也可以快速的限制上传图片文件类或大小,实例代码如下:

  1. /* 
  2.  * created on 2010-6-21 
  3.  * 
  4.  * the class for image to upload 
  5.  * 
  6.  * made by s71ence 
  7.  * 
  8.  * @$user_id 
  9.  * @$max_file_size 
  10.  * @$max_image_side 
  11.  * @$destination_folder 
  12.  * 
  13.  * return: 
  14.  * @$_cookie['img_path'] 
  15.  * @$img_unfind 
  16.  * @$img_type 
  17.  * @$mkdir_warry 
  18.  * @$img_side_too_big 
  19.  * @$img_exist 
  20.  * @$img_move 
  21.  * @$img_upload_sucess 
  22.  */ 
  23.  
  24.  
  25.  代码如下 复制代码  
  26. header('content-type:text/html;charset=utf-8'); 
  27.  
  28.  class image_upload extends fn_function 
  29.  { 
  30.  private $user_id
  31.  private $max_file_size//allow the image's size 
  32.  private $max_image_side//allow the image's side 
  33.  private $destination_folder//image's storage path 
  34.  private $img_preview
  35.  private $img_preview_size
  36.  private $cookie_set//the cookie's name 
  37.  
  38.  function __construct($user_id,$max_file_size,$max_image_side,$destination_folder,$img_preview,$img_preview_size,$cookie_set
  39.  { 
  40.   $this->user_id=$user_id
  41.   $this->max_file_size=$max_file_size
  42.   $this->max_image_side=$max_image_side
  43.   $this->destination_folder=$destination_folder
  44.   $this->img_preview=$img_preview
  45.   $this->img_preview_size=$img_preview_size
  46.   $this->cookie_set=$cookie_set
  47.   $this->get_date(); 
  48.   $this->get_image_type(); 
  49.  } 
  50.  
  51.  private function get_date() 
  52.  { 
  53.   $this->date=fn_function::get_server_date(); 
  54.   return $this->date
  55.  } 
  56.  
  57.  function get_image_type() 
  58.  { 
  59.   $this->up_img_types=array
  60.             'image/jpg'
  61.             'image/jpeg'
  62.             'image/png'
  63.             'image/pjpeg'
  64.             'image/gif'
  65.             'image/bmp'
  66.             'image/x-png' 
  67.         ); 
  68.  
  69.   return $this->up_img_types; 
  70.  } 
  71.  
  72.  function upload_image() 
  73.  { 
  74.   if ($_server['request_method'] == 'post'
  75.   { 
  76.    //check the iamge is exist 
  77.    if (!is_uploaded_file($_files["upfile"]["tmp_name"])) 
  78.    { 
  79.     return $img_unfind=fn_function::alert_msg('图片不存在!'); 
  80.     exit
  81.       } 
  82.  
  83.       $file = $_files["upfile"]; 
  84.  
  85.    //check the iamge's size 
  86.       if($this->max_file_size < $file["size"]) 
  87.       { 
  88.        return $img_side_too_big=fn_function::alert_msg('图片大小超过系统允许最大值!'); 
  89.        exit
  90.       } 
  91.  
  92.       //check the iamge's type 
  93.       if(!in_array($file["type"], $this->up_img_types)) 
  94.       { 
  95.        return $img_type=fn_function::alert_msg('图片类型不符!'); 
  96.        exit
  97.       } 
  98.  
  99.       if(!file_exists($this->destination_folder)) 
  100.       { 
  101.        if(!fn_function::mkdirs($this->destination_folder)) 
  102.        { 
  103.         return $mkdir_warry=fn_function::alert_msg('目录创建失败!'); 
  104.         exit
  105.        } 
  106.       } 
  107.  
  108.       $file_name=$file["tmp_name"]; 
  109.       $image_size = getimagesize($file_name); 
  110.       $pinfo=pathinfo($file["name"]); 
  111.       $file_type=$pinfo['extension']; 
  112.       $destination = $this->destination_folder.time().".".$file_type
  113.    setcookie($this->cookie_set, $destination); 
  114.  
  115.    if($image_size[0]>$this->max_image_side || $image_size[1]>$this->max_image_side) 
  116.    { 
  117.     return $img_side_too_big=fn_function::alert_msg('图片分辨率超过系统允许最大值!'); 
  118.     exit
  119.    } 
  120.  
  121.    $overwrite=""
  122.    if (file_exists($destination) && $overwrite != true) 
  123.    { 
  124.     return $img_exist=fn_function::alert_msg('同名文件已经存在了!'); 
  125.     exit
  126.       } 
  127.  
  128.       if(!move_uploaded_file ($file_name$destination)) 
  129.       { 
  130.        return $img_move=fn_function::alert_msg('移动文件出错!'); 
  131.        exit
  132.       } 
  133.  
  134.    $img_upload_sucess="<font color=red face=微软雅黑>上传成功</font><br>"
  135.    if($this->img_preview==1) 
  136.    { 
  137.     $img_src="<img src="".$destination."" width=".($image_size[0]*$this->img_preview_size)." height=".($image_size[1]*$this->img_preview_size);//开源代码phpfensi.com 
  138.     $img_upload_sucess.=$img_src
  139.    } 
  140.       return $img_upload_sucess
  141.   } 
  142.  } 
  143.  
  144.  function __destruct() 
  145.  { 
  146.   //clear 
  147.  } 
  148.  } 

Tags: php文件上传 php图片上传

分享到: