我正在使用AFNetworking 3.0
将一些图片上传到php服务器中。代码很简单。但这不起作用,我不知道原因。
我总是收到php错误:
UPLOAD_ERR_INI_SIZE。
php.ini
中的限制大小为 2M ,我的图片大小仅为 200K ,我尝试使用野生动物园进行测试,效果很好。
当我使用非常小的图片 6k 时,它也起作用。
这是我的代码:
客户端:
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
// manager.responseSerializer = [AFJSONResponseSerializer serializer];
manager.responseSerializer = [AFHTTPResponseSerializer serializer];
manager.responseSerializer.acceptableContentTypes = [[NSSet alloc] initWithObjects:@"application/xml", @"text/xml",@"text/html", @"application/json",@"text/plain",nil];
[manager POST:@"http://192.168.1.108/upload.php" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> _Nonnull formData) {
UIImage *image =[UIImage imageNamed:@"moon"];
NSData *data = UIImagePNGRepresentation(image);
//file name
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.dateFormat = @"yyyyMMddHHmmss";
NSString *str = [formatter stringFromDate:[NSDate date]];
NSString *fileName = [NSString stringWithFormat:@"%@.jpg", str];
[formData appendPartWithFileData:data name:@"img" fileName:fileName mimeType:@"image/jpeg"];
} progress:^(NSProgress * _Nonnull uploadProgress) {
} success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSString *result =[[ NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
NSLog(@"fail %@", error);
}];
}
upload.php
<?php
$file = $_FILES['img'];
if ($file['error'] == 0) {
$typeArr = explode("/", $file["type"]);
if($typeArr[0]== "image"){
$imgType = array("png","jpg","jpeg");
if(in_array($typeArr[1], $imgType)){
$imgname = "file/".time().".".$typeArr[1];
$bol = move_uploaded_file($file["tmp_name"], $imgname);
if($bol){
echo "ok";
} else {
echo "fail";
};
};
}
} else {
echo $file['error'];
};
有帮助吗?谢谢。
答案 0 :(得分:1)
我刚刚发现了问题所在。
我的图片是jpg,我用UIImagePNGRepresentation
来获取数据,我应该改用UIImageJPEGRepresentation
。
谢谢。