我在 Objective-C 应用程序中有一个 JSON 字符串,我想将它发送到服务器上的 PHP 脚本。
我应该使用什么 PHP 代码来接收和解析这些数据?
- (IBAction)send:(id)sender{
NSString *jsonString = [selectedPerson.jsonDictionary JSONRepresentation];
NSLog(@"ESE ES EL JSON %@", jsonString);
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init ];
NSString*post = [NSString stringWithFormat:@"&json=%@", jsonStri ng];
NSData*postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:NO];
NSLog(@"ESTO ES DATA %@", postData);
[request setURL:[NSURL URLWithSt ring:@"http://www.mydomine.com/recive.php"]];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"content- type"];
[request setHTTPBody:postData];
}