NSURLSessionUploadTask没有将文件传递给php脚本

时间:2014-01-16 21:26:31

标签: php html objective-c nsurlsession

编辑:好的,我只是将内容类型标题设置为multipart / form-data,没有任何区别。我原来的问题如下:


这是关于堆栈溢出的第一个问题,我希望我做得对。

我只学习Objective-C,最近完成了斯坦福大学课程的在线版本。我对php和html几乎一无所知。 PHP脚本和我正在使用的HTML大多是从教程中复制的。 Obj-C让更多对我有意义。

问题:

我有一个PHP脚本。它上传图像文件。从服务器上同一文件夹中的html文件调用时,它可以正常工作。我试图从我的obj-c调用它时使相同的脚本工作。它似乎运行,它返回200,obj-c确实调用了php,但是没有文件出现在在线文件夹中。

由于它仅在ios7中引入,因此在网络上似乎很少。没有我发现处理文件上传的例子,它们都处理下载,只是说上传类似。我所做的似乎满足了我找到的任何教程。

我所知道的是:

  • php工作,文件上传,当它从服务器上的html文件调用时
  • obj-c肯定是在调用php脚本(我在php中写了一些日志记录(使用file_put_contents),确认在运行obj-c时正在调用脚本)
  • obj-c几乎肯定是在上传图片文件(如果我在obj-c中使用委托方法,它会显示上传进度)
  • 但php脚本没有收到文件(我写入php的日志显示$ _FILES没有值,当从obj-c调用时。从html调用它按预期工作)
  • 我刚刚编辑了php来记录它收到的标题,它确实获得了图像文件的Content-Length。

可能重要的事情

  • 我没有添加任何html标题,没有我见过的教程说我必须(使用NSURLSessionUploadTask),我认为NSURLSessionUploadTask会为你排序吗?或者这是我的问题吗?
  • [响应描述]返回200,引用:{URL :( PHP脚本URL)} {状态代码:200,headers { 连接=“保持活力”; “Content-Type”=“text / html”; 日期=“星期四,2014年1月16日19:58:10 GMT”; “Keep-Alive”=“timeout = 5,max = 100”; 服务器= Apache; “转移编码”=身份; }}
  • html指定enctype =“multipart / form-data”,也许这必须在我的obj-c中工作?
  • 到目前为止,我只是在模拟器上运行它
  • 任何帮助都将非常感谢!谢谢:)。
  • 编辑,我刚刚编辑了下面的代码来显示[request setHTTPMethod:@“POST”]而不是我原来拥有的[request setHTTPMethod:@“PUSH”],但它没有变化。

这是目标C

- (void) uploadFile: (NSURL*) localURL toRemoteURL: (NSURL*) phpScriptURL
{
    NSURLSessionConfiguration *defaultConfigObject = [NSURLSessionConfiguration defaultSessionConfiguration];
    NSURLSession *defaultSession = [NSURLSession sessionWithConfiguration: defaultConfigObject delegate: nil delegateQueue: [NSOperationQueue mainQueue]];
    NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:phpScriptURL];
    [request setHTTPMethod:@"POST"];
    NSURLSessionUploadTask* uploadTask = [defaultSession uploadTaskWithRequest:request fromFile:localURL completionHandler:^(NSData *data, NSURLResponse *response, NSError *error){
        if (error == nil)
        {
            NSLog(@"NSURLresponse =%@",  [response description]);
            // do something !!!
        } else
        {
            //handle error
        }
        [defaultSession invalidateAndCancel];
    }];

    self.imageView.image = [UIImage imageWithContentsOfFile:localURL.path]; //to confirm localURL is correct

    [uploadTask resume];
}

,这是服务器上的PHP脚本

<?php

        $file = 'log.txt';
        $current = file_get_contents($file);
        $current .= $_FILES["file"]["name"]." is being uploaded. ";  //should write the name of the file to log.txt 
        file_put_contents($file, $current);


    ini_set('display_errors',1);
    error_reporting(E_ALL);

   $allowedExts = array("gif", "jpeg", "jpg", "png");
   $temp = explode(".", $_FILES["file"]["name"]);
   $extension = end($temp);   

    if ((($_FILES["file"]["type"] == "image/gif")
    || ($_FILES["file"]["type"] == "image/jpeg")
    || ($_FILES["file"]["type"] == "image/jpg")
    || ($_FILES["file"]["type"] == "image/pjpeg")
    || ($_FILES["file"]["type"] == "image/x-png")
    || ($_FILES["file"]["type"] == "image/png"))
    //&& ($_FILES["file"]["size"] < 100000) //commented out for error checking
    && in_array($extension, $allowedExts))
      {
      if ($_FILES["file"]["error"] > 0)
        {
        echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
        }
      else
        {
            echo "Upload: " . $_FILES["file"]["name"] . "<br>";
            echo "Type: " . $_FILES["file"]["type"] . "<br>";
            echo "Size: " . ($_FILES["file"]["size"] / 1024) . " kB<br>";
            echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br>";

            if (file_exists("upload/" . $_FILES["file"]["name"]))
              {
              echo $_FILES["file"]["name"] . " already exists. ";
              }
            else
              {
              if (move_uploaded_file($_FILES["file"]["tmp_name"],
              "upload/" . $_FILES["file"]["name"]))
              {
                echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
              }
              else
              {
                echo "Error saving to: " . "upload/" . $_FILES["file"]["name"];
              }

            }
        }
      }
    else
      {
      echo "Invalid file";
      }

?>

,这是调用相同脚本时按预期工作的html文件

<html>
<body>

    <form action="ios_upload.php" method="post"
    enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file"><br>
    <input type="submit" name="submit" value="Submit">
    </form>

</body>

1 个答案:

答案 0 :(得分:0)

我刚才在这里回答了同样的问题: https://stackoverflow.com/a/28269901/4518324

基本上,文件作为二进制文件上传到请求正文中的服务器。

要在PHP中保存该文件,您只需获取请求正文并将其保存到文件中即可。

您的代码应如下所示:

Objective-C代码:

- (void) uploadFile: (NSURL*) localURL toRemoteURL: (NSURL*) phpScriptURL
{
    // Create the Request
     NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:phpScriptURL];
    [request setHTTPMethod:@"POST"];

    // Configure the NSURL Session
     NSURLSessionConfiguration *defaultConfigObject = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:@"com.upload"];
    [sessionConfig setHTTPMaximumConnectionsPerHost: 1];

     NSURLSession *defaultSession = [NSURLSession sessionWithConfiguration:defaultConfigObject delegate:self delegateQueue:nil];

     NSURLSessionUploadTask* uploadTask = [defaultSession uploadTaskWithRequest:request fromFile:localURL completionHandler:^(NSData *data, NSURLResponse *response, NSError *error){
         if (error == nil)
         {
              NSLog(@"NSURLresponse =%@",  [response description]);
              // do something !!!
         } else
         {
             //handle error
         }
         [defaultSession invalidateAndCancel];
     }];

      self.imageView.image = [UIImage imageWithContentsOfFile:localURL.path]; //to confirm localURL is correct

     [uploadTask resume];
}

PHP代码:

<?php
    // Get the Request body
    $request_body = @file_get_contents('php://input');

    // Get some information on the file
    $file_info = new finfo(FILEINFO_MIME);

    // Extract the mime type
    $mime_type = $file_info->buffer($request_body);

    // Logic to deal with the type returned
    switch($mime_type) 
    {
        case "image/gif; charset=binary":
            // Create filepath
             $file = "upload/image.gif";

            // Write the request body to file
            file_put_contents($file, $request_body);

            break;

        case "image/png; charset=binary":
            // Create filepath
             $file = "upload/image.png";

            // Write the request body to file
            file_put_contents($file, $request_body);

            break;

        default:
            // Handle wrong file type here
            echo $mime_type;
    }
?>

我写了一个代码示例,用于录制音频并将其上传到服务器: https://github.com/gingofthesouth/Audio-Recording-Playback-and-Upload

它显示了在iOS设备上保存,上传和保存到服务器的代码。

我希望有所帮助。