色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

ios 上傳圖片php

阮建安1年前6瀏覽0評論
在iOS應用開發中,圖片是重要的一部分,而上傳圖片為網絡應用的重要功能之一。PHP作為常見的后端語言,也有著很好的支持iOS上傳圖片的功能。下面將介紹如何使用PHP來實現iOS上傳圖片功能。 首先,在iOS端創建一個視圖來選擇圖片:
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(20, 20, 280, 280)];
imageView.backgroundColor = [UIColor lightGrayColor];
imageView.userInteractionEnabled = YES;
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(chooseImage)];
[imageView addGestureRecognizer:tap];
[self.view addSubview:imageView];
在這段代碼中,我們創建了一個UIImageView視圖,并添加了一個手勢識別器,當用戶點擊這個視圖時,將出現本地相冊的選擇器界面。選擇圖片后,圖片將被顯示在UIImageView視圖上。 接下來,需要將這個圖片上傳到服務器。這里我們使用PHP來處理上傳的圖片。首先,在服務器端創建一個PHP腳本,這個腳本將處理客戶端上傳的圖片并返回一些處理結果:
if(!empty($_FILES['image']['name'])){
$path = './uploads/';
$fileInfo = pathinfo($_FILES['image']['name']);
$newName = md5(uniqid(microtime(true),true)).'.'.$fileInfo['extension'];
$filePath = $path.$newName;
if(move_uploaded_file($_FILES['image']['tmp_name'], $filePath)) {
$data=array(
'status'=>1,
'message'=>'上傳成功',
'data'=>array(
'url'=>'http://example.com/uploads/'.$newName
)
);
}else{
$data=array('status'=>0,'message'=>'上傳失敗');
}
}
echo json_encode($data);
在這段PHP代碼中,我們首先判斷是否有圖片被上傳。如果有,則給上傳的圖片生成一個唯一的文件名,并存放在指定的文件夾中。這里使用了move_uploaded_file()函數來將上傳的文件移動到指定位置。如果移動成功,則返回一個上傳成功的JSON格式數據。其中,'status'=>1表示上傳成功,'url'表示生成的文件路徑。如果上傳失敗,則返回一個上傳失敗的JSON格式數據,'status'=>0表示上傳失敗。 最后,在iOS端調用我們創建的PHP腳本,將上傳的圖片傳送到服務器端:
NSURLSessionConfiguration *sessionConfiguration = [NSURLSessionConfiguration defaultSessionConfiguration];
NSURLSession *session = [NSURLSession sessionWithConfiguration:sessionConfiguration];
NSURL *url = [NSURL URLWithString:@"http://example.com/upload.php"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
request.HTTPMethod = @"POST";
NSMutableData *body = [NSMutableData data];
NSString *boundary = @"iOSImageUploadBoundary";
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", boundary];
[request addValue:contentType forHTTPHeaderField:@"Content-Type"];
UIImage *image = imageView.image;
NSData *imageData = UIImageJPEGRepresentation(image, 1.0);
[body appendData:[[NSString stringWithFormat:@"--%@\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[@"Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[@"Content-Type: application/octet-stream\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:imageData];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];
request.HTTPBody = body;
NSURLSessionDataTask *task = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error != nil) {
NSLog(@"Error = %@", error);
return;
}
NSError *jsonError;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:0 error:&jsonError];
NSLog(@"JSON = %@", json);
dispatch_async(dispatch_get_main_queue(), ^{
NSString *status = [NSString stringWithFormat:@"%@",[json objectForKey:@"status"]];
if ([status isEqualToString:@"1"]) {
NSString *imageUrl = [NSString stringWithFormat:@"%@",[[json objectForKey:@"data"] objectForKey:@"url"]];
NSLog(@"Image URL = %@", imageUrl);
}
});
}];
[task resume];
在這段代碼中,我們使用NSURLSession來建立一個和服務器的連接,并傳送上傳的圖片。我們將上傳的數據格式設置為multipart/form-data,并設置一個自定義的boundary。在上傳數據中,我們將圖片數據按照上面創建的boundary和一定的格式進行打包,并附加在HTTP請求中。最終,服務器將處理我們的上傳請求數據,并將處理結果以JSON格式返回給iOS端。在iOS端,我們將返回的JSON數據解析并得到上傳后的文件路徑。 通過這種方式,我們可以輕松地將圖片上傳到服務器端并且方便地得到上傳后的文件路徑。此外,這種方法還可以應用到其他上傳文件類型的場景下,只需要稍微修改一下代碼即可。