search
Homephp教程PHP源码适用于初学者的简易PHP文件上传类_php技巧

这篇文章主要为大家分享了一个适用于初学者的简易PHP文件上传类,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例讲述了PHP多文件上传类,分享给大家供大家参考。具体如下:

<?php
class Test_Upload{
 
  protected $_uploaded = array();
  protected $_destination;  
  protected $_max = 1024000;
  protected $_messages = array();
  protected $_permited = array(
                &#39;image/gif&#39;,
                &#39;image/jpeg&#39;,
                &#39;image/pjpeg&#39;,
                &#39;image/png&#39;  
  );
  protected $_renamed = false;
   
  /**
   * 
   * @param mix $path
   * 
   */
  public function __construct($path){
     
    if (!is_dir($path) || !is_writable($path)){
      throw new Exception("文件名不可写,或者不是目录!");
    }
    $this->_destination = $path;
    $this->_uploaded = $_FILES;
  }
  /**
   * 移动文件
   * 
   */
  public function move(){
     
    $filed = current($this->_uploaded); 
       
    $isOk = $this->checkError($filed[&#39;name&#39;], $filed[&#39;error&#39;]);
    //debug ok
    if ($isOk){
      $sizeOk = $this->checkSize($filed[&#39;name&#39;], $filed[&#39;size&#39;]);
      $typeOk = $this->checkType($filed[&#39;name&#39;], $filed[&#39;type&#39;]);
      if ($sizeOk && $typeOk){
         
        $success = move_uploaded_file($filed[&#39;tmp_name&#39;], $this->_destination.$filed[&#39;name&#39;]);
         
        if ($success){
          $this->_messages[] = $filed[&#39;name&#39;]."文件上传成功";
        }else {
          $this->_messages[] = $filed[&#39;name&#39;]."文件上传失败";
        }
      }
       
    }
  }
  /**
   * 查询messages数组内容 
   *
   */
  public function getMessages(){
    return $this->_messages;
  }
   
  /**
   * 检测上传的文件大小
   * @param mix $string
   * @param int $size
   */
  public function checkSize($filename, $size){
     
    if ($size == 0){
      return false;
    }else if ($size > $this->_max){
      $this->_messages[] = "文件超出上传限制大小".$this->getMaxsize();
      return false;
    }else { 
      return true;
    }
  }
   
  /**
   * 检测上传文件的类型
   * @param mix $filename
   * @param mix $type
   */
  protected function checkType($filename, $type){
    if (!in_array($type, $this->_permited)){
      $this->_messages[] = "该文件类型是不被允许的上传类型";
      return false;
    }else {
      return true;
    }
  }
   
  /**
   * 获取文件大小
   * 
   */
  public function getMaxsize(){
    return number_format($this->_max / 1024, 1).&#39;KB&#39;;
  }
   
  /**
   * 检测上传错误
   * @param mix $filename
   * @param int $error
   * 
   */
  public function checkError($filename, $error){
    switch ($error){
      case 0 : return true;
      case 1 :
      case 2 : $this->_messages[] = "文件过大!"; return true;
      case 3 : $this->_messages[] = "错误上传文件!";return false;
      case 4 : $this->_messages[] = "没有选择文件!"; return false;
      default : $this->_messages[] = "系统错误!"; return false;
    }
  }
}
?>

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
PHP文件上传教程:如何使用HTML表单上传文件PHP文件上传教程:如何使用HTML表单上传文件Jun 11, 2023 am 08:10 AM

PHP文件上传教程:如何使用HTML表单上传文件在进行网站开发过程中,文件上传功能是非常常见的需求。而PHP作为一种流行的服务器脚本语言,可以很好地实现文件上传功能。本文将详细地介绍如何使用HTML表单完成文件上传。一、HTML表单首先,我们需要使用HTML表单创建一个文件上传的页面。HTML表单中需要设置enctype属性为“multipart/form-

在PHP中如何处理文件上传?在PHP中如何处理文件上传?May 11, 2023 pm 10:31 PM

随着互联网技术的不断发展,文件上传功能已成为许多网站必不可少的一部分。在PHP语言中,我们可以通过一些类库和函数来处理文件上传。本文将重点介绍PHP中的文件上传处理方法。一、表单设置在HTML表单中,我们需要设置enctype属性为“multipart/form-data”,以支持文件上传。代码如下:&lt;formaction=&quot;upload.

PHP文件上传安全指南:如何使用$_FILES数组获取上传文件信息PHP文件上传安全指南:如何使用$_FILES数组获取上传文件信息Jul 30, 2023 pm 06:53 PM

PHP文件上传安全指南:如何使用$_FILES数组获取上传文件信息摘要:文件上传是Web开发中常见的功能之一。然而,不正确的文件上传实现可能会导致安全漏洞,给应用程序带来潜在的风险。本文将介绍如何使用PHP的$_FILES数组来安全地获取上传文件的信息,并结合一些代码示例来帮助读者更好地理解。设置合适的文件上传限制在PHP中,我们可以使用php.ini文件来

处理PHP文件上传编码错误并生成对应报错提示的技巧处理PHP文件上传编码错误并生成对应报错提示的技巧Aug 06, 2023 am 09:51 AM

处理PHP文件上传编码错误并生成对应报错提示的技巧在开发Web应用程序中,文件上传是一个非常常见的需求。而在处理PHP文件上传时,我们经常会遇到编码错误的情况。本文将介绍一些处理PHP文件上传编码错误并生成对应报错提示的技巧。在PHP中,文件上传是通过$_FILES全局变量来访问上传的文件的。通过$_FILES可以获取上传文件的名称、大小、临时文件路径等信息

PHP文件上传方法及常见问题汇总PHP文件上传方法及常见问题汇总Jun 08, 2023 pm 09:27 PM

PHP文件上传方法及常见问题汇总文件上传是Web开发中常见的功能之一,可以用于用户上传头像、文件等。PHP提供方便的文件上传处理方法,本文将详细介绍PHP文件上传方法及常见问题汇总。一、PHP文件上传方法HTML表单实现文件上传需要使用HTML表单,其中需要设置enctype属性为"multipart/form-data",这样浏览器

如何通过PHP编写一个简单的文件上传和下载功能如何通过PHP编写一个简单的文件上传和下载功能Sep 24, 2023 am 08:12 AM

如何通过PHP编写一个简单的文件上传和下载功能随着互联网技术的发展,文件上传和下载功能成为了许多网站必备的功能之一。通过编写一个简单的文件上传和下载功能,可以让用户方便地上传和下载文件,提高用户体验。本文将介绍如何使用PHP编写一个简单的文件上传和下载功能,并提供具体的代码示例。一、文件上传功能的实现创建表单首先,在HTML页面上创建一个表单,用于用户上传文

如何使用PHP开发CMS中的文件上传与下载模块如何使用PHP开发CMS中的文件上传与下载模块Jun 21, 2023 pm 12:13 PM

随着互联网的不断发展,越来越多的网站都需要文件上传和下载功能。作为一种开源的服务器端脚本语言,PHP有着广泛的应用场景和业界认可。而CMS(ContentManagementSystem,内容管理系统)是我们常见的网站类型之一,本文将讨论如何使用PHP开发CMS中的文件上传与下载模块。一、文件上传模块1.上传文件的基本原理文件上传的基本原理是将文件从客户

如何使用PHP实现一个简单的在线文件上传和下载系统如何使用PHP实现一个简单的在线文件上传和下载系统Sep 24, 2023 pm 03:13 PM

如何使用PHP实现一个简单的在线文件上传和下载系统,需要具体代码示例在网络时代,文件的传输和共享是非常常见的需求。无论是个人还是企业,都需要方便、快捷地处理文件的上传和下载操作。而PHP作为一种强大的服务器端脚本语言,提供了丰富的函数和工具,可以方便地实现文件上传和下载功能。本文将介绍如何使用PHP实现一个简单的在线文件上传和下载系统,并提供详细的代码示例。

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),