douju4594 2014-03-31 11:19 采纳率: 100%
浏览 37
已采纳

HTML PHP文件上传错误

I am trying to upload a PDF file, but getting the "Invalid File" error. I have used the code from w3schools, but its not working. Here is the PHP code

    $allowedExts = array("pdf");
    $temp = explode(".", $_FILES["pdfFile"]["name"]);
    $extension = end($temp);
    if ((($_FILES["pdfFile"]["type"] == "application/pdf"))
    && ($_FILES["pdfFile"]["size"] < 1200000)
    && in_array($extension, $allowedExts))
      {
      if ($_FILES["pdfFile"]["error"] > 0)
        {
        echo "Return Code: " . $_FILES["pdfFile"]["error"] . "<br>";
        }
      else
        {
        echo "Upload: " . $_FILES["pdfFile"]["name"] . "<br>";
        echo "Type: " . $_FILES["pdfFile"]["type"] . "<br>";
        echo "Size: " . ($_FILES["pdfFile"]["size"] / 1024) . " kB<br>";
        echo "Temp file: " . $_FILES["pdfFile"]["tmp_name"] . "<br>";

        if (file_exists("../assets/pdf/" . $_FILES["pdfFile"]["name"]))
          {
          echo $_FILES["pdfFile"]["name"] . " already exists. ";
          }
        else
          {
          move_uploaded_file($_FILES["pdfFile"]["tmp_name"],
          "../assets/pdf/" . $_FILES["pdfFile"]["name"]);
          echo "Stored in: " . "../assets/pdf/" . $_FILES["pdfFile"]["name"];
          }
        }
      }
    else
      {
      echo "Invalid file";
      }
  • 写回答

2条回答 默认 最新

  • dongtang1909 2014-03-31 11:23
    关注

    Could you just check (by echo, var_dump or whatever suits you) the content of $_FILES["pdfFile"] ? Are you sure it fits ?

    And you did set the enctype of Your upload form as well ? http://www.w3schools.com/tags/att_form_enctype.asp

    And the form method is equal POST ?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 怎样才能让鼠标沿着线条的中心线轨迹移动
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?