目录
php简单的上传类分享,php上传分享
首页 后端开发 php教程 php简单的上传类分享,php上传分享_PHP教程

php简单的上传类分享,php上传分享_PHP教程

Jul 12, 2016 am 08:52 AM
php

php简单的上传类分享,php上传分享

本文实例为大家分享了php上传类,供大家参考,具体内容如下

<&#63;php
class UploadFile{
  var $inputName;         //控件名
  var $allowType = array(
        'image/gif','image/jpg','image/jpeg','image/png','image/x-png','image/pjpeg'
  );                //上传类型
  var $allowSize = 2097152;  //限制大小
  var $saveDir = UPLOAD;   //保存目录
  var $isRename = true;        //是否重命名,默认为true
  var $errID = 0;           //错误代码,默认为0
  var $errMsg = "";          //错误信息
  var $savePath = "";         //保存路径

  function __construct($inputName,$allowType="",$allowSize="",$saveDir="",$isRename=true){
    if(empty($inputName)){
      $this->chk_err(-1);    //无传入控件名
    }else{
      $this->inputName = $inputName;
    }

    if(!empty($allowType)) $this->allowType = $allowType;
    if(!empty($allowSize)) $this->allowSize = $allowSize;
    if(!empty($saveDir)) $this->saveDir = $saveDir;
    if(!empty($isRename)) $this->isRename = $isRename;
  }

  function is_uploaded(){
    if(empty($_FILES[$this->inputName]['name'])){
      $this->chk_err(4);  //没有文件被上传
    }else{
      if(is_uploaded_file($_FILES[$this->inputName]['tmp_name'])){
        return true;
      }else{
        $this->chk_err(-2);    //文件上传不合法
      }
    }
  }

  function chk_type(){
    if(!in_array($_FILES[$this->inputName]['type'],$this->allowType)){
      $this->chk_err(-3);     //上传的文件类型不被允许
    }else{
      return true;
    }
  }

  function chk_size(){
    if($_FILES[$this->inputName]['size'] > $this->allowSize){
      $this->chk_(-4);     //上传的文件过大
    }else{
      return true;
    }
  }

  function move_uploaded(){    //移动上传文件
    if(!$this->is_uploaded()){
      return false;
    }

    if(!$this->chk_size()){
      return false;
    }

    if(!$this->chk_type()){
      return false;
    }

    //重命名
    if($this->isRename){
      $arrTmp = pathinfo($_FILES[$this->inputName]['name']);
      $extension = strtolower($arrTmp['extension']);
      $file_newname = date("YmdHis").rand(1000,9999)."00.".$extension; //重命名新文件, 00表示为上传的为原图
    }else{
      $file_newname = $_FILES[$this->inputName]['name'];
    }
    
    if(!file_exists($this->saveDir)){    //判断保存目录是否存在
      mkdir($this->saveDir,0777,true);  //建立保存目录
    }

    //移动文件
    $result = move_uploaded_file($_FILES[$this->inputName]['tmp_name'],$this->saveDir."/".$file_newname);

    if($result){
      $path = $this->savePath = $this->saveDir.$file_newname;    //文件的成功保存路径
      return $path;
    }else{
      $this->chk_err($_FILES[$this->inputName]['error']);
    }
  
  }

  //判断出错信息
  function chk_err($errID){
    $this->errID = $errID;
    switch($this->errID){
      case -4:
        $this->errMsg = "上传的文件过大";
        break;
      case -3:
        $this->errMsg = "上传的文件类型不被允许";
        break;
      case -2:
        $this->errMsg = "文件上传不合法";
        break;
      case -1:
        $this->errMsg = "无控件名传入";
        break;
      case 1:
        $this->errMsg = '上传的文件超出了php.ini中upload_max_filesize设定的最大值';
        break;
      case 2:
        $this->errMsg = '上传文件的大小超过了HTML表单中MAX_FILE_SIZE选项指定的值';
        break;
      case 3:
        $this->errMsg = '文件只有部分被上传';
        break;
      case 4:
        $this->errMsg = '没有文件被上传';
        break;
      default:
        break;
    }
    return false;
  
  }

  function get_errMsg(){
    echo $this->errMsg; //输出错误信息
  }

  /**
   +----------------------------------------------------------
   * 取得图像信息
   *
   +----------------------------------------------------------
   * @static
   * @access public
   +----------------------------------------------------------
   * @param string $image 图像文件名
   +----------------------------------------------------------
   * @return mixed
   +----------------------------------------------------------
   */
  function getImageInfo($img) {
    $imageInfo = getimagesize($img);
    if( $imageInfo!== false) {
      $imageType = strtolower(substr(image_type_to_extension($imageInfo[2]),1));
      $imageSize = filesize($img);
      $info = array(
        "width"    =>$imageInfo[0],
        "height"  =>$imageInfo[1],
        "type"    =>$imageType,
        "size"    =>$imageSize,
        "mime"    =>$imageInfo['mime'],
      );
      return $info;
    }else {
      return false;
    }
  }

  /**
   +----------------------------------------------------------
   * 生成缩略图
   +----------------------------------------------------------
   * @static
   * @access public
   +----------------------------------------------------------
   * @param string $image 原图
   * @param string $type 图像格式
   * @param string $thumbname 缩略图文件名
   * @param string $maxWidth 宽度
   * @param string $maxHeight 高度
   * @param string $position 缩略图保存目录
   * @param boolean $interlace 启用隔行扫描
   * @param boolean $is_save 是否保留原图
   +----------------------------------------------------------
   * @return void
   +----------------------------------------------------------
   */
   
  function thumb($image,$is_save=true,$suofang=0,$type='',$maxWidth=500,$maxHeight=500,$interlace=true){
    // 获取原图信息
    $info = $this->getImageInfo($image);
     if($info !== false) {
      $srcWidth = $info['width'];
      $srcHeight = $info['height'];
      $type = empty($type)&#63;$info['type']:$type;
      $type = strtolower($type);
      $interlace = $interlace&#63; 1:0;
      unset($info);
      if ($suofang==1) {
        $width = $srcWidth;
        $height = $srcHeight;
      } else {
        $scale = min($maxWidth/$srcWidth, $maxHeight/$srcHeight); // 计算缩放比例
        if($scale>=1) {
          // 超过原图大小不再缩略
          $width  = $srcWidth;
          $height = $srcHeight;
        }else{
          // 缩略图尺寸
          $width = (int)($srcWidth*$scale);  //147
          $height = (int)($srcHeight*$scale);  //199
        }
      }
      // 载入原图
      $createFun = 'ImageCreateFrom'.($type=='jpg'&#63;'jpeg':$type);
      $srcImg   = $createFun($image);

      //创建缩略图
      if($type!='gif' && function_exists('imagecreatetruecolor'))
        $thumbImg = imagecreatetruecolor($width, $height);
      else
        $thumbImg = imagecreate($width, $height);

      // 复制图片
      if(function_exists("ImageCopyResampled"))
        imagecopyresampled($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth,$srcHeight);
      else
        imagecopyresized($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth,$srcHeight);
      if('gif'==$type || 'png'==$type) {
        //imagealphablending($thumbImg, false);//取消默认的混色模式
        //imagesavealpha($thumbImg,true);//设定保存完整的 alpha 通道信息
        $background_color = imagecolorallocate($thumbImg, 0,255,0); // 指派一个绿色
        imagecolortransparent($thumbImg,$background_color); // 设置为透明色,若注释掉该行则输出绿色的图
      }
      // 对jpeg图形设置隔行扫描
      if('jpg'==$type || 'jpeg'==$type)   imageinterlace($thumbImg,$interlace);
      //$gray=ImageColorAllocate($thumbImg,255,0,0);
      //ImageString($thumbImg,2,5,5,"ThinkPHP",$gray);
      // 生成图片
      $imageFun = 'image'.($type=='jpg'&#63;'jpeg':$type); 
      $length = strlen("00.".$type) * (-1);
      $_type = substr($image,-4);
      $length = ($type != $_type &#63; $length+1 : $length);
      //裁剪
      if ($suofang==1) {
        
        $thumbname01 = substr_replace($image,"01.".$type,$length);    //大头像
        $thumbname02 = substr_replace($image,"02.".$type,$length);    //小头像
        $imageFun($thumbImg,$thumbname01,100);
        $imageFun($thumbImg,$thumbname02,100);

        $thumbImg01 = imagecreatetruecolor(190,195);
        imagecopyresampled($thumbImg01,$thumbImg,0,0,$_POST['x'],$_POST['y'],190,195,$_POST['w'],$_POST['h']);

        $thumbImg02 = imagecreatetruecolor(48,48);
        imagecopyresampled($thumbImg02,$thumbImg,0,0,$_POST['x'],$_POST['y'],48,48,$_POST['w'],$_POST['h']);

        $imageFun($thumbImg01,$thumbname01,100);
        $imageFun($thumbImg02,$thumbname02,100);
//        unlink($image);
        imagedestroy($thumbImg01);
        imagedestroy($thumbImg02);
        imagedestroy($thumbImg);
        imagedestroy($srcImg);

        return array('big' => $thumbname01 , 'small' => $thumbname02);  //返回包含大小头像路径的数组
      }else{
        if($is_save == false){                      //缩略图覆盖原图,缩略图的路径还是原图路径
          $imageFun($thumbImg,$image,100);
        }else{
          $thumbname03 = substr_replace($image,"03.".$type,$length);  //缩略图与原图同时存在,
          $imageFun($thumbImg,$thumbname03,100);

          imagedestroy($thumbImg);
          imagedestroy($srcImg);
          return $thumbname03 ;          //返回缩略图的路径,字符串
        }
      }

     }
     return false;
  }
}

登录后复制

以上就是本文的全部内容,希望对大家学习php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1127895.htmlTechArticlephp简单的上传类分享,php上传分享 本文实例为大家分享了php上传类,供大家参考,具体内容如下 phpclass UploadFile{ var $inputName; //控件名 var...
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

CakePHP 项目配置 CakePHP 项目配置 Sep 10, 2024 pm 05:25 PM

在本章中,我们将了解CakePHP中的环境变量、常规配置、数据库配置和电子邮件配置。

适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 适用于 Ubuntu 和 Debian 的 PHP 8.4 安装和升级指南 Dec 24, 2024 pm 04:42 PM

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 日期和时间 CakePHP 日期和时间 Sep 10, 2024 pm 05:27 PM

为了在 cakephp4 中处理日期和时间,我们将使用可用的 FrozenTime 类。

CakePHP 文件上传 CakePHP 文件上传 Sep 10, 2024 pm 05:27 PM

为了进行文件上传,我们将使用表单助手。这是文件上传的示例。

CakePHP 路由 CakePHP 路由 Sep 10, 2024 pm 05:25 PM

在本章中,我们将学习以下与路由相关的主题?

讨论 CakePHP 讨论 CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 如何设置 Visual Studio Code (VS Code) 进行 PHP 开发 Dec 20, 2024 am 11:31 AM

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写

CakePHP 创建验证器 CakePHP 创建验证器 Sep 10, 2024 pm 05:26 PM

可以通过在控制器中添加以下两行来创建验证器。

See all articles