简体   繁体   English

无法使用 PHP 上传 docs/pdf 文件

[英]Can not upload docs/pdf file using PHP

I have an issue while uploading file using PHP.我在使用 PHP 上传文件时遇到问题。 I can upload the image type file successfully but could not able to upload the pdf/docs type file.我可以成功上传图像类型文件,但无法上传 pdf/docs 类型文件。 Here is my code:这是我的代码:

$target_dir = "../../admin/enquiry/";
 $fileName = generateRandom() . '_' . $_FILES['attachment']['name'];
 $target_file = $target_dir . basename($fileName);
 $imageFileType = pathinfo($target_file, PATHINFO_EXTENSION);
 $uploadOk = 1;
 $check = getimagesize($_FILES['attachment']['tmp_name']);
 header('Content-Type: application/json');  
 if ($check !== false) {  
       $result['msg'] = "check not false.";
            //  echo json_encode(array('status' => $check['mime']));
        $uploadOk = 1;
  } else {  
        $result['msg'] = "check false.";
            //  echo json_encode(array('status' => 'upload failed'));
        $uploadOk = 0;
   }

   if (file_exists($target_file)) {  
       echo json_encode(array('status' => 'file already exists'));
       $uploadOk = 0;
   }
    if ($uploadOk == 0) {  
        //
    } else {
              if (move_uploaded_file($_FILES['attachment']['tmp_name'], $target_file)) {  
                $result['msg'] = "File has uploaded successfully.";
                $result['num'] = 1;
                $result['img'] =$fileName;
              }else{
                $result['msg'] = "Sorry, Your File could not uploaded to the directory.";
                $result['num'] = 0;
              }

            }

I am getting message check false.我收到消息check false. means there is some problem with getimagesize .意味着getimagesize存在一些问题。 I can also passing the file size 138kb but in case of image its uploading successfully but other type file could not upload but I need to upload those.我也可以传递 138kb 的文件大小,但如果图像上传成功,但其他类型的文件无法上传,但我需要上传这些文件。

At the very top of the file, add these code to enable php error.在文件的最顶部,添加这些代码以启用 php 错误。

error_reporting(-1);
ini_set('display_errors', 'On');
set_error_handler("var_dump");


  $target_dir = "../../admin/enquiry/";
  if(isset($_FILES['attachment'])){
   $errors= array();
   $file_name =  generateRandom() . '_' .$_FILES['attachment']['name'];
   $target_file = $target_dir . basename($file_name);
   $file_size = $_FILES['attachment']['size'];
   $file_tmp = $_FILES['attachment']['tmp_name'];
   $file_type = $_FILES['attachment']['type'];
   $file_ext=strtolower(end(explode('.',$_FILES['attachment']['name'])));

   $extension= array("jpeg","jpg","png","pdf");

   if(in_array($file_ext,$extension)=== false){
       $errors[]="extension not allowed, please choose a JPEG,PNG or PDF file.";
   }

   if($file_size > 2097152) {
       $errors[]='File size must be exactely 2 MB';
   }

   if(empty($errors)==true) {
       move_uploaded_file($file_tmp,$target_file);
       echo "Success";
   }else{
       print_r($errors);
   }
  }
 ?>

有条件地调用 getImagesize 函数。如果文件类型是图像,那么它应该被调用。

do check the uploaded file is an image before calling getimagesize().在调用 getimagesize() 之前,请检查上传的文件是否为图像。

   if($file_type=="image/gif" || $file_type=="image/jpeg")
    {
       $check = getimagesize($_FILES['attachment']['tmp_name']);
    }

also add condition $check != NULL in the if-else block还要在if-else块中添加条件$check != NULL

转到所有 PHP ini 文件并将post_max_size更改为高值。我也遇到了问题,我将其设置为 10000M

post_max_size=10000M

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM