search
HomeBackend DevelopmentPHP TutorialDetailed explanation of PHP file upload classes and usage

Detailed explanation of PHP file upload classes and usage

May 19, 2018 pm 03:51 PM
phpusageDetailed explanation

这篇文章主要介绍了PHP实现的文件上传类与用法,结合实例形式较为详细的分析了PHP文件上传类的定义与具体使用方法,需要的朋友可以参考下

FileUpload.class.php,其中用到了两个常量,可在网站配置文件中定义:define('ROOT_PATH',dirname(__FILE__)); //网站根目录、define('UPDIR','/uploads/'); //上传主目录


<?php
  //上传文件类
  class FileUpload {
    private $error;  //错误代码
    private $maxsize; //表单最大值
    private $type;  //类型
    private $typeArr = array(&#39;image/jpeg&#39;,&#39;image/pjpeg&#39;,&#39;image/png&#39;,&#39;image/x-png&#39;,&#39;image/gif&#39;); //类型合集
    private $path;  //目录路径
    private $today;  //今天目录
    private $name;  //文件名
    private $tmp;  //临时文件
    private $linkpath; //链接路径
    private $linktotay; //今天目录(相对)
    //构造方法,初始化
    public function __construct($_file,$_maxsize) {
       $this->error = $_FILES[$_file][&#39;error&#39;];
       $this->maxsize = $_maxsize / 1024;
       $this->type = $_FILES[$_file][&#39;type&#39;];
       $this->path = ROOT_PATH.UPDIR;
       $this->linktotay = date(&#39;Ymd&#39;).&#39;/&#39;;
       $this->today = $this->path.$this->linktotay;
       $this->name = $_FILES[$_file][&#39;name&#39;];
       $this->tmp = $_FILES[$_file][&#39;tmp_name&#39;];
       $this->checkError();
       $this->checkType();
       $this->checkPath();
       $this->moveUpload();
    }
    //返回路径
    public function getPath() {
       $_path = $_SERVER["SCRIPT_NAME"];
       $_dir = dirname(dirname($_path));
       if ($_dir == &#39;\\&#39;) $_dir = &#39;/&#39;;
       $this->linkpath = $_dir.$this->linkpath;
       return $this->linkpath;
    }
    //移动文件
    private function moveUpload() {
       if (is_uploaded_file($this->tmp)) {
         if (!move_uploaded_file($this->tmp,$this->setNewName())) {
            Tool::alertBack(&#39;警告:上传失败!&#39;);
         }
       } else {
         Tool::alertBack(&#39;警告:临时文件不存在!&#39;);
       }
    }
    //设置新文件名
    private function setNewName() {
       $_nameArr = explode(&#39;.&#39;,$this->name);
       $_postfix = $_nameArr[count($_nameArr)-1];
       $_newname = date(&#39;YmdHis&#39;).mt_rand(100,1000).&#39;.&#39;.$_postfix;
       $this->linkpath = UPDIR.$this->linktotay.$_newname;
       return $this->today.$_newname;
    }
    //验证目录
    private function checkPath() {
       if (!is_dir($this->path) || !is_writeable($this->path)) {
         if (!mkdir($this->path)) {
            Tool::alertBack(&#39;警告:主目录创建失败!&#39;);
         }
       }
       if (!is_dir($this->today) || !is_writeable($this->today)) {
         if (!mkdir($this->today)) {
            Tool::alertBack(&#39;警告:子目录创建失败!&#39;);
         }
       }
    }
    //验证类型
    private function checkType() {
       if (!in_array($this->type,$this->typeArr)) {
         Tool::alertBack(&#39;警告:不合法的上传类型!&#39;);
       }
    }
    //验证错误
    private function checkError() {
       if (!empty($this->error)) {
         switch ($this->error) {
            case 1 :
              Tool::alertBack(&#39;警告:上传值超过了约定最大值!&#39;);
              break;
            case 2 :
              Tool::alertBack(&#39;警告:上传值超过了&#39;.$this->maxsize.&#39;KB!&#39;);
              break;
            case 3 :
              Tool::alertBack(&#39;警告:只有部分文件被上传!&#39;);
              break;
            case 4 :
              Tool::alertBack(&#39;警告:没有任何文件被上传!&#39;);
              break;
            default:
              Tool::alertBack(&#39;警告:未知错误!&#39;);
         }
       }
    }
  }
?>


其中,用到了一个静态工具类 Tool.class.php,代码如下:

Tool.class.php


<?php
  class Tool {
     //弹窗返回
     static public function alertBack($_info) {
       echo "<script type=&#39;text/javascript&#39;>alert(&#39;$_info&#39;);history.back();</script>";
       exit();
     }     //弹窗赋值关闭
     static public function alertOpenerClose($_info,$_path) {
       echo "<script type=&#39;text/javascript&#39;>alert(&#39;$_info&#39;);</script>";
       echo "<script type=&#39;text/javascript&#39;>opener.document.content.thumbnail.value=&#39;$_path&#39;;</script>";
       echo "<script type=&#39;text/javascript&#39;>opener.document.content.pic.style.display=&#39;block&#39;;</script>";
       echo "<script type=&#39;text/javascript&#39;>opener.document.content.pic.src=&#39;$_path&#39;;</script>";
       echo "<script type=&#39;text/javascript&#39;>window.close();</script>";
       exit();
     } }
?>


下面进行一个实例演示,请看下面的步骤:

1、先创建一个 index.php 页面,做一个表单

index.php


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a target=_blank href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" rel="external nofollow" rel="external nofollow" >http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a target=_blank href="http://www.w3.org/1999/xhtml" rel="external nofollow" rel="external nofollow" >http://www.w3.org/1999/xhtml</a>">
  <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     <title>main</title>
  </head>
  <body>
     <form name="content" method="post" action="?action=add">
     <input type="text" name="thumbnail" class="text" readonly="readonly" /> <input type="button" value="上传" onclick="centerWindow(&#39;./upfile.html&#39;,&#39;upfile&#39;,&#39;400&#39;,&#39;100&#39;)" /> <img  name="pic"   style="max-width:90%" / alt="Detailed explanation of PHP file upload classes and usage" > ( * 必须是jpg,gif,png,并且200k内) <br />
     </form>
  </body>
</html>


2、创建 upfile.html 文件,建立表单提交到 upload.php.

upfile.html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a target=_blank href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" rel="external nofollow" rel="external nofollow" >http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a target=_blank href="http://www.w3.org/1999/xhtml" rel="external nofollow" rel="external nofollow" >http://www.w3.org/1999/xhtml</a>">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>上传图片</title>
  </head>
  <body></p><p>   <form method="post" action="./upload.php" enctype="multipart/form-data" style="text-align:center;margin:30px;">
    <input type="hidden" name="MAX_FILE_SIZE" value="204800" />
    <input type="file" name="pic" />
    <input type="submit" name="send" value="确定上传" />
</form></p><p></body>
</html>


3、通过 upload.php 文件调用文件上传类实现上传,并且把路径赋给 input 标签和显示图片


<?php
  require &#39;FileUpload.class.php&#39;;
  if (isset($_POST[&#39;send&#39;])) {
    $_fileupload = new FileUpload(&#39;pic&#39;,$_POST[&#39;MAX_FILE_SIZE&#39;]);
    $_path = $_fileupload->getPath();
    Tool::alertOpenerClose(&#39;文件上传成功!&#39;,$_path);
  } else {
    Tool::alertBack(&#39;警告:文件过大或者其他未知错误导致浏览器崩溃!&#39;);
  }
?>

相关推荐:

php文件上传类的分享_php实例

php文件上传类及PHP封装的多文件上传类分享

一个PHP文件上传类分享_php实例

The above is the detailed content of Detailed explanation of PHP file upload classes and usage. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the difference between unset() and session_destroy()?What is the difference between unset() and session_destroy()?May 04, 2025 am 12:19 AM

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

What is sticky sessions (session affinity) in the context of load balancing?What is sticky sessions (session affinity) in the context of load balancing?May 04, 2025 am 12:16 AM

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

What are the different session save handlers available in PHP?What are the different session save handlers available in PHP?May 04, 2025 am 12:14 AM

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

What is a session in PHP, and why are they used?What is a session in PHP, and why are they used?May 04, 2025 am 12:12 AM

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

Explain the lifecycle of a PHP session.Explain the lifecycle of a PHP session.May 04, 2025 am 12:04 AM

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

What is the difference between absolute and idle session timeouts?What is the difference between absolute and idle session timeouts?May 03, 2025 am 12:21 AM

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

What steps would you take if sessions aren't working on your server?What steps would you take if sessions aren't working on your server?May 03, 2025 am 12:19 AM

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

What is the significance of the session_start() function?What is the significance of the session_start() function?May 03, 2025 am 12:18 AM

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version