search

PHP文件上传

一、普通文件上传方式

使用原生态的php上传文件。

(1)前端代码

    

?

(2)php代码(upload_file.php)

    <?php if ((($_FILES["file"]["type"] == "image/gif")|| ($_FILES["file"]["type"] == "image/jpeg")|| ($_FILES["file"]["type"] == "image/pjpeg"))&& ($_FILES["file"]["size"] < 20000)){  
      if ($_FILES["file"]["error"] > 0) {  
        echo "Return Code: " . $_FILES["file"]["error"] . "<br>";  
      }else {  
          echo "Upload: " . $_FILES["file"]["name"] . "<br>";  
          echo "Type: " . $_FILES["file"]["type"] . "<br>";  
          echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br>";  
          echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>";  
      
          if (file_exists("upload/" . $_FILES["file"]["name"])){  
             echo $_FILES["file"]["name"] . " already exists. ";  
          }else{  
             move_uploaded_file($_FILES["file"]["tmp_name"],  
             "upload/" . $_FILES["file"]["name"]);  
             echo "Stored in: " . "upload/" . $_FILES["file"]["name"];  
          }  
      }  
      
    }else {  
      echo "Invalid file";  
    }  
    ?>  
?

?

?

二、异步文件上传方式

目的是尽量少使用插件。于是使用iframe异步上传文件

?

(1)前端html

    
导入文件:

?

    function startUpload() {  
        var spanObj = document.getElementById("info");  
        spanObj.innerHTML = " 开始上传";  
        document.getElementById("upForm").sumbit();  
    }  
    //回调  
    function stopUpload(responseText){  
        var spanObj = document.getElementById("info");  
        spanObj.innerHTML = "上传成功";  
        spanObj.innerHTML = responseText;  
    }  

?

(2)服务器端代码

    $file = $_FILES['myfile'];  
    $fileName = uploadFile($file);  
    //$result = readFromFile("../upload/" . $fileName);  
    echo "<script type="text/javascript">window.top.window.stopUpload('{$fileName}')</script>";  
      
    function uploadFile($file) {  
        // 上传路径       
        $destinationPath = "../upload/";  
        if (!file_exists($destinationPath)){  
            mkdir($destinationPath , 0777);  
        }  
        //重命名  
        $fileName = date('YmdHis') . '_' . iconv('utf-8' , 'gb2312' , basename($file['name']));  
        if (move_uploaded_file($file['tmp_name'], $destinationPath . $fileName)) {  
            return iconv('gb2312' , 'utf-8' , $fileName);  
        }  
        return '';  
    }  

?

    //代码注释  
    /* 
    1,关于basename方法 
    $path = "/testweb/home.php"; 
    //显示带有文件扩展名的文件名 
    echo basename($path); 
    //显示不带有文件扩展名的文件名 
    echo basename($path,".php"); 
     
    2,关于iconv 
    iconv('gb2312' , 'utf-8' , $fileName);//将$fileName从gb2312转为utf-8格式。 
    注:该函数需要开启php.ini里面的php_iconv.dll 
     
    3,关于$_FILES['myfile'] 
    $_FILES相当于一个二维数组,而$_FILES['myfile']相当于一个一维数组。所以可以 
    $f = $_FILES['myfile']; 
    echo $f['name']; 
     
    如果直接访问该$_FILES['myfile'],则会报Undefined index: myfile。此时加上 
    if(!isset($_FILES['myfile'])){ 
        die('上传文件不存在!'); 
    } 
    */  
?
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
鸿蒙原生应用随机诗词鸿蒙原生应用随机诗词Feb 19, 2024 pm 01:36 PM

想了解更多关于开源的内容,请访问:51CTO鸿蒙开发者社区https://ost.51cto.com运行环境DAYU200:4.0.10.16SDK:4.0.10.15IDE:4.0.600一、创建应用点击File->newFile->CreateProgect。选择模版:【OpenHarmony】EmptyAbility:填写项目名,shici,应用包名com.nut.shici,应用存储位置XXX(不要有中文,特殊字符,空格)。CompileSDK10,Model:Stage。Device

使用java的File.length()函数获取文件的大小使用java的File.length()函数获取文件的大小Jul 24, 2023 am 08:36 AM

使用Java的File.length()函数获取文件的大小文件大小是在处理文件操作时很常见的一个需求,Java提供了一个很方便的方法来获取文件的大小,即使用File类的length()方法。本文将介绍如何使用该方法来获取文件的大小,并给出相应的代码示例。首先,我们需要创建一个File对象来表示我们想要获取大小的文件。以下是创建File对象的方法:Filef

php blob怎么转filephp blob怎么转fileMar 16, 2023 am 10:47 AM

php blob转file的方法:1、创建一个php示例文件;2、通过“function blobToFile(blob) {return new File([blob], 'screenshot.png', { type: 'image/jpeg' })}”方法实现Blob转File即可。

使用java的File.renameTo()函数重命名文件使用java的File.renameTo()函数重命名文件Jul 25, 2023 pm 03:45 PM

使用Java的File.renameTo()函数重命名文件在Java编程中,我们经常需要对文件进行重命名的操作。Java提供了File类来处理文件操作,其中的renameTo()函数可以方便地重命名文件。本文将介绍如何使用Java的File.renameTo()函数来重命名文件,并提供相应的代码示例。File.renameTo()函数是File类的一个方法,

使用java的File.getParentFile()函数获取文件的父目录使用java的File.getParentFile()函数获取文件的父目录Jul 27, 2023 am 11:45 AM

使用java的File.getParentFile()函数获取文件的父目录在Java编程中,我们经常需要操作文件和文件夹。当我们需要获取文件的父目录时,可以使用Java提供的File.getParentFile()函数来完成。本文将介绍如何使用这个函数并提供代码示例。Java中的File类是用于操作文件和文件夹的主要类。它提供了许多方法来获取和操作文件的属性

使用java的File.getParent()函数获取文件的父路径使用java的File.getParent()函数获取文件的父路径Jul 24, 2023 pm 01:40 PM

使用java的File.getParent()函数获取文件的父路径在Java编程中,我们经常需要操作文件和文件夹。有时候,我们需要获取一个文件的父路径,也就是该文件所在文件夹的路径。Java的File类提供了getParent()方法用于获取文件或文件夹的父路径。File类是Java对文件和文件夹的抽象表示,它提供了一系列操作文件和文件夹的方法。其中,get

如何使用Java中的File.delete()方法删除文件或目录?如何使用Java中的File.delete()方法删除文件或目录?Nov 18, 2023 am 08:02 AM

如何使用Java中的File.delete()方法删除文件或目录?概述:在Java中,我们可以使用File类的delete()方法来删除文件或目录。该方法用于删除指定的文件或目录。但是需要注意的是,该方法只能删除空目录或者没有被其他程序打开的文件。如果文件或目录删除失败,可以通过捕获IOException异常来查找具体原因。步骤一:导入相关的包首先,我们需要

如何使用Java中的Files函数进行文件操作如何使用Java中的Files函数进行文件操作Jun 26, 2023 pm 04:21 PM

在Java编程语言中,经常需要进行文件的读取、写入、复制、删除等操作。Java提供了一组Files类的函数来进行文件操作。本文将介绍如何使用Java中的Files函数进行文件操作。导入所需的包在进行文件操作之前,首先要导入Java的io包和nio包:importjava.io.File;importjava.io.IOException;import

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

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

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),