新手.php上传总是 invalid file

WBOY
Release: 2016-06-13 10:08:02
Original
913 people have browsed it

新手求助.php上传总是 invalid file


upload_test












------------------------------------------------------
upload_file.php
------------------------------------------------------
  if ( (($_FILES["file"]["type"] == "image/gif")||($_FILES["file"]["type"] == "image/jpeg")||($_FILES["file"]["type"] == "image/pjpeg")) && ($_FILES["file"]["size"]   if ($_FILES["file"]["error"] > 0){
  echo "Return Code: ".$_FILES["file"]["error"]."
";
  }else{
  echo "Upload: ".$_FILES["file"]["name"]."
";
  echo "Type: ".$_FILES["file"]["type"]."
";
  echo "Size: ".($_FILES["file"]["size"]/1024)."
";
  echo "Temp file: ".$_FILES["file"]["tmp_name"]."
";
   
  if (file_exists("upload/".$_FILES["file"]["name"])){
  echo $_FILES["file"]["name"]."already exists.";
  }else{
  move_uploaded_file($_FILES["file"]["tmp_name"],"upload/".$_FILES["file"]["name"]);
  echo "Stored in : "."upload/".$_FILES["file"]["name"];
  }
  }
  }else{
  echo "Invalid file";
  }
?>
--------------------------------------------------
W3School教程中的文件上传,我复制这两个文件,一在浏览器下上传文件,就只返回 invalid file



------解决方案--------------------
print_r($_FILES['file']) 看看你上传的文件信息,就知道问题在哪儿了
------解决方案--------------------
经测试,没有问题~

可能你上传的图片大小超过了20K.. 你的条件中有大小限制:

PHP code
&& ($_FILES["file"]["size"] 
                 
              
              
        
            
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!