大家好,我知道如何在 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);