首页 > 作文

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

更新时间:2023-04-07 08:31:47 阅读: 评论:0

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

废话略过,直接上代码:

首先前端代码:index.html

<html><head> <meta http-equiv="con学籍查询网站tent-type" content="text/html;chart=utf-8"> <title>文件上传demo</title><网页打开慢的解决方法/head><body><form method="post" action="upload.php" enctype="multipart/form-data">   <table border=0 cellspacing=0 cellpadding=0 align=center width="100%">   <tr>    <td width=55 height=20 align="center">  <input type="hidden" name="max_file_size" value="2000000">文件:   </td>    <td height="16">    <input name="file" type="file" value="浏览" />         <input type="submit" value="上传" name="submit" />    </td>   </tr>   </table>  </form></body></html>

接下来是重点:upload.php

<?php/** * @title 文件上传示例 * @author feonix */header("content-type:text/html; chart=utf-8");if($_post['submit']){ $upfiles = new upload(); $upfiles->upload_file();}class upload{ public $upload_name; //上传文件名 public $upload_tmp_name; //上传临时文件名 public $upload_final_name; //上传文件的最终文件名 public $upload_target_dir; //文件被上传到的目标目录 public $upload_target_path; //文件被上传到的最终路径 public $upload_filetype ; //上传文件类型 public $allow托班音乐教案_uploadedfile_type;//允许的上传文件类型 public $upload_file_size; //上传文件的大小 public $allow_uploaded_maxsize=10000000;//允许上传文件的最大值 //构造函数 public function __construct() { $this->upload_name = $_files["file"]["name"]; //取得上传文件名 $this->upload_file嘉兴学院分数线type = $_files["file"]["type"]; $this->upload_tmp_name = $_files["file"]["tmp_name"]; $this->allow_uploadedfile_type = array('jpeg','jpg','png','gif','bmp','doc','xls','csv','zip','rar','txt','wps'); $this->upload_file_size = $_files["file"]["size"]; $this->upload_target_dir="./upload"; } //文件上传 public function upload_file() { $upload_filetype = $this->getfileext($this->upload_name);//获取文件扩展名 if(in_array($upload_filetype,$this->allow_uploadedfile_type))//判断文件类型是否符合要求 {  if($this->upload_file_size < $this->allow_uploaded_maxsize)//判断文件大小是否超过允许的最大值  {  if(!is_dir($this->upload_target_dir))//如果文件上传目录不存在  {   mkdir($this->upload_target_dir);//创建文件上传目录   chmod($this->upload_target_dir,0777);//改权限  }  $this->upload_final_name = date("ymdhis").rand(0,100).'.'.$upload_filetype;//生成随机文件名  $this->upload_target_path = $this->upload_target_dir."/".$this->upload_final_name;//文件上传目标目录  if(!move_uploaded_file($this->upload_tmp_name,$this->upload_target_path))//文件移动失败  {   echo "<font color=red>文件上传失败!</font>";  }  el  {   echo "<font color=green>文件上传成功!</font>";  }  }  el  {  echo("<font color=red>文件太大,上传dna和rna失败!</font>");  } } el {  echo("<font color=red>仅支持一下文件类型,请重新选择:<br>".implode(',',$this->allow_uploadedfile_type)."</font>"); } }  /**   *获取文件扩展名   *@param string $filename 要获取文件名的文件   */  public function getfileext($filename){   $info = pathinfo($filename);   return @$info["extension"];  }}?>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。

本文发布于:2023-04-07 08:31:44,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/65b829ef65d7ba52749db5543b974efd.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP文件上传小程序 适合初学者学习!.doc

本文 PDF 下载地址:PHP文件上传小程序 适合初学者学习!.pdf

标签:文件上传   文件名   上传   文件
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图