编辑:好的,我只是将内容类型标题设置为multipart / form-data,没有任何区别。我原来的问题如下:
这是关于堆栈溢出的第一个问题,我希望我做得对。
我只学习Objective-C,最近完成了斯坦福大学课程的在线版本。我对php和html几乎一无所知。 PHP脚本和我正在使用的HTML大多是从教程中复制的。 Obj-C让更多对我有意义。
问题:
我有一个PHP脚本。它上传图像文件。从服务器上同一文件夹中的html文件调用时,它可以正常工作。我试图从我的obj-c调用它时使相同的脚本工作。它似乎运行,它返回200,obj-c确实调用了php,但是没有文件出现在在线文件夹中。
由于它仅在ios7中引入,因此在网络上似乎很少。没有我发现处理文件上传的例子,它们都处理下载,只是说上传类似。我所做的似乎满足了我找到的任何教程。
我所知道的是:
可能重要的事情:
这是目标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>
答案 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设备上保存,上传和保存到服务器的代码。
我希望有所帮助。