我将文本从ios发送到php,并将其保存在sql数据库中。但类似“äöü”的变音符号另存为\ 344等。
我不知道我能做什么...
这是我的步骤:
在xcode中:
NSData *data = [[_textInput getText] dataUsingEncoding:NSNonLossyASCIIStringEncoding];
NSString *goodValue = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSString *post = [[NSString alloc] initWithFormat:@"&text=%@" goodValue];
NSData * postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:NO];
NSString * postLength = [NSString stringWithFormat:@"%d",[postData length]];
NSMutableURLRequest * request = [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://website.de/test.php"]]];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
NSURLConnection * conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
在php中:
$text = $_POST['text'];
$result = dbquery("INSERT INTO test (text) VALUES ('$text')");
这让我很生气-.-,如何将ios的变音符发送到php?
您不应该使用NSASCIIStringEncoding
。使用NSUTF8StringEncoding
代替。
NSData * postData = [post dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:NO];
本文收集自互联网,转载请注明来源。
如有侵权,请联系[email protected] 删除。
我来说两句