当前位置:首页 > PHP教程 > php上传下载 > 列表

PHP文件上传小程序 适合初学者学习!

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-23 10:32:20 浏览: 评论:0 

这篇文章主要为大家详细介绍了PHP文件上传小程序,给初学者提供的PHP文件上传小程序,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

本文实例为大家分享了PHP文件上传小程序的具体代码,供大家参考,具体内容如下

废话略过,直接上代码:

首先前端代码:index.html

  1. <html> 
  2. <head> 
  3.  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> 
  4.  <title>文件上传Demo</title> 
  5. </head> 
  6. <body> 
  7. <form method="post" action="upload.php" enctype="multipart/form-data">   
  8.  <table border=0 cellspacing=0 cellpadding=0 align=center width="100%">   
  9.  <tr>   
  10.   <td width=55 height=20 align="center"> 
  11.   <input type="hidden" name="MAX_FILE_SIZE" value="2000000">文件:  
  12.   </td>   
  13.   <td height="16">   
  14.   <input name="file" type="file" value="浏览" />        
  15.   <input type="submit" value="上传" name="submit" />   
  16.   </td>   
  17.  </tr>   
  18.  </table>   
  19. </form> 
  20. </body> 
  21. </html> 

接下来是重点:upload.php

  1. <?php 
  2. /** 
  3.  * @title 文件上传示例 
  4.  * @author FeoniX 
  5.  */ 
  6. header("Content-Type:text/html; charset=utf-8"); 
  7. if($_POST['submit']){ 
  8.  $upfiles = new Upload(); 
  9.  $upfiles->upload_file(); 
  10. class Upload{ 
  11.  public $upload_name//上传文件名 
  12.  public $upload_tmp_name//上传临时文件名 
  13.  public $upload_final_name//上传文件的最终文件名 
  14.  public $upload_target_dir//文件被上传到的目标目录 
  15.  public $upload_target_path//文件被上传到的最终路径 
  16.  public $upload_filetype ; //上传文件类型 
  17.  public $allow_uploadedfile_type;//允许的上传文件类型 
  18.  public $upload_file_size//上传文件的大小 
  19.  public $allow_uploaded_maxsize=10000000;//允许上传文件的最大值 
  20.  //构造函数 
  21.  public function __construct() 
  22.  { 
  23.  $this->upload_name = $_FILES["file"]["name"]; //取得上传文件名 
  24.  $this->upload_filetype = $_FILES["file"]["type"]; 
  25.  $this->upload_tmp_name = $_FILES["file"]["tmp_name"]; 
  26.  $this->allow_uploadedfile_type = array('jpeg','jpg','png','gif','bmp','doc','xls','csv','zip','rar','txt','wps'); 
  27.  $this->upload_file_size = $_FILES["file"]["size"]; 
  28.  $this->upload_target_dir="./upload"
  29.  } 
  30.  //文件上传 
  31.  public function upload_file() 
  32.  { 
  33.  $upload_filetype = $this->getFileExt($this->upload_name);//获取文件扩展名 
  34.  if(in_array($upload_filetype,$this->allow_uploadedfile_type))//判断文件类型是否符合要求 
  35.  { 
  36.   if($this->upload_file_size < $this->allow_uploaded_maxsize)//判断文件大小是否超过允许的最大值 
  37.   { 
  38.   if(!is_dir($this->upload_target_dir))//如果文件上传目录不存在 
  39.   { 
  40.    mkdir($this->upload_target_dir);//创建文件上传目录 
  41.    chmod($this->upload_target_dir,0777);//改权限 
  42.   } 
  43.   $this->upload_final_name = date("YmdHis").rand(0,100).'.'.$upload_filetype;//生成随机文件名 
  44.   $this->upload_target_path = $this->upload_target_dir."/".$this->upload_final_name;//文件上传目标目录 
  45.   if(!move_uploaded_file($this->upload_tmp_name,$this->upload_target_path))//文件移动失败 
  46.   { 
  47.    echo "<font color=red>文件上传失败!</font>"
  48.   } 
  49.   else 
  50.   { 
  51.    echo "<font color=green>文件上传成功!</font>"
  52.   } 
  53.   } 
  54.   else 
  55.   { 
  56.   echo("<font color=red>文件太大,上传失败!</font>"); 
  57.   } 
  58.  } 
  59.  else 
  60.  { 
  61.   echo("<font color=red>仅支持一下文件类型,请重新选择:<br>".implode(',',$this->allow_uploadedfile_type)."</font>"); 
  62.  } 
  63.  } 
  64.   /** 
  65.    *获取文件扩展名 
  66.    *@param String $filename 要获取文件名的文件 
  67.    */ 
  68.   public function getFileExt($filename){ 
  69.    $info = pathinfo($filename); 
  70.    return @$info["extension"]; 
  71.   } 
  72. ?>

Tags: PHP文件上传小程序

分享到: