php文件上传实例

今天改进了下旗下几个网站的文件上传系统,顺便发点东西,全php代码,无js,文件类型根据后缀名判断,非mime判断,新建个up.php,代码如下:

  1. <?php
  2. $uptype=array("jar","zip");
  3. //允许上传文件类型
  4. $max_file_size=20480000; //上传文件大小限制, 单位BYTE
  5. $path_parts=pathinfo($_SERVER['PHP_SELF']); //取得当前路径
  6. $destination_folder="files/";
  7. //上传文件路径
  8. $name="MuXi_".date("Y-m-d_H-i-s");
  9. //保存文件名
  10. if($_SERVER['REQUEST_METHOD'] == 'POST')
  11. {
  12. $file = $_FILES["upload_file"];
  13. if(!is_uploaded_file($file["tmp_name"]))
  14. //是否存在文件
  15. {
  16. echo "文件不存在!";
  17. exit;
  18. }
  19. $torrent = explode(".", $file["name"]);
  20. $fileend = end($torrent);
  21. $fileend = strtolower($fileend);
  22. if(!in_array($fileend, $uptype))
  23. //检查上传文件类型
  24. {
  25. echo"不允许上传此类型文件!";
  26. exit;
  27. }
  28. if($max_file_size < $file["size"])
  29. //检查文件大小
  30. {
  31. echo "文件太大,超过上传限制!";
  32. exit;
  33. }
  34. if(!file_exists($destination_folder))
  35. mkdir($destination_folder);
  36. $filename=$file["tmp_name"];
  37. $image_size = getimagesize($filename);
  38. $pinfo=pathinfo($file["name"]);
  39. $ftype=$pinfo[extension];
  40. $destination = $destination_folder.$name.".".$ftype;
  41. if(file_exists($destination) && $overwrite != true)
  42. {
  43. echo "同名文件已经存在了!";
  44. exit;
  45. }
  46. if(!move_uploaded_file ($filename, $destination))
  47. {
  48. echo "移动文件出错!";
  49. exit;
  50. }
  51. $pinfo=pathinfo($destination);
  52. $fname=$pinfo[basename];
  53. echo "上传成功!";
  54. }
  55. ?>

调用代码如下:

  1. <form action="up.php" method="post" enctype="multipart/form-data">
  2. <input type="file" name="upload_file" />
  3. <input type="submit" value="上传" />

用mime类型限制有局限性,有些文件在上传是不是正常本身的mime,导致上传不成功,而用后缀名限制可以很好的解决这个问题.