0

大家好,我知道如何在 php 中检测移动浏览器,但我的情况现在不同了。如果我使用 NSURL 从应用程序请求 php Web 服务,则 php 无法检测到它是否是移动请求。请告诉我如何在 php 中检测移动请求(不是浏览器)。我用

NSURL * url=[NSURL URLWithString:@"http://xxxx.com/detect.php"];
NSData * data=[NSData dataWithContentsOfURL:url];
NSString * str=[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"Response is %@",str);
4

1 回答 1

0

我假设您正在使用某个NSURLRequest地方... 创建一个可变请求NSMutableURLRequest并设置您要在 PHP 中检查的标头(使用addValue:forHTTPHeaderField:)。

于 2013-06-18T13:57:38.997 回答