Implementation examples of common file upload functions in php web pages

黄舟
Release: 2023-03-16 20:50:01
Original
1744 people have browsed it

Use php to implement common file upload functions on web pages, for your reference, the specific content is as follows

Upload page

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>

</head>
<body>
<!--上传文件 enctype="multipart/form-data"指的是编码方式为上传多种类型文件和数据流-->

<form method="post" action="123.php" enctype="multipart/form-data">
 <input type="file" name="file">
 <input type="submit" value="上传">
</form>
</body>
</html>
Copy after login

File processingPage

<?php
/**
 * Created by fcc
 * User: Administrator
 * Date: 2017/10/31
 * Time: 10:33
 */

var_dump($_FILES);
//文件处理要实现的几点
//1.是否有错误
//2.文件类型是否符合要求
//3.文件大小是否符合要求
//4.文件名是否重复
//$types = [&#39;image/jpeg&#39;,&#39;image/png&#39;];
if (!$_FILES[&#39;file&#39;][&#39;error&#39;]){
 if ($_FILES[&#39;file&#39;][&#39;type&#39;] == &#39;image/jpeg&#39;){
  if ($_FILES[&#39;file&#39;][&#39;size&#39;]<200000){
//文件传到文件夹中,可以拼接时间戳,用户名等防止文件名重复
   $file_name = "./upload/2017-10-31/".$_FILES[&#39;file&#39;][&#39;name&#39;];
   if (!file_exists($file_name)){
    move_uploaded_file($_FILES[&#39;file&#39;][&#39;tmp_name&#39;],$file_name);
//    $filename=iconv("UTF-8","",$file_name);
   }else{
    echo "文件名重复";
   }
  }else{
   echo "文件过大";
  }
 }else{
  echo "文件格式错误";
 }

}
//实验过程中出现因为图片汉字命名报错!!!
Copy after login

The above is the detailed content of Implementation examples of common file upload functions in php web pages. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!