欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php限制上传文件类型并保存上传文件

程序员文章站 2024-02-09 10:11:04
...

下面的代码演示了php中如何获取用户上传的文件,并限制文件类型的一般图片文件,最后保存到服务器

  1. $allowedExts = array("gif", "jpeg", "jpg", "png");
  2. $extension = end(explode(".", $_FILES["file"]["name"]));
  3. if ((($_FILES["file"]["type"] == "image/gif")
  4. || ($_FILES["file"]["type"] == "image/jpeg")
  5. || ($_FILES["file"]["type"] == "image/jpg")
  6. || ($_FILES["file"]["type"] == "image/pjpeg")
  7. || ($_FILES["file"]["type"] == "image/x-png")
  8. || ($_FILES["file"]["type"] == "image/png"))
  9. && ($_FILES["file"]["size"] && in_array($extension, $allowedExts))
  10. {
  11. if ($_FILES["file"]["error"] > 0)
  12. {
  13. echo "Return Code: " . $_FILES["file"]["error"] . "
    ";
  14. }
  15. else
  16. {
  17. echo "Upload: " . $_FILES["file"]["name"] . "
    ";
  18. echo "Type: " . $_FILES["file"]["type"] . "
    ";
  19. echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB
    ";
  20. echo "Temp file: " . $_FILES["file"]["tmp_name"] . "
    ";
  21. if (file_exists("upload/" . $_FILES["file"]["name"]))
  22. {
  23. echo $_FILES["file"]["name"] . " already exists. ";
  24. }
  25. else
  26. {
  27. move_uploaded_file($_FILES["file"]["tmp_name"],
  28. "upload/" . $_FILES["file"]["name"]);
  29. echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
  30. }
  31. }
  32. }
  33. else
  34. {
  35. echo "Invalid file";
  36. }
  37. ?>
复制代码

上传文件, 并保存, php