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

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