在objective-c中,您可以使用[[UIDevice currentDevice] name]
获取电话名称(例如我的iPhone 5)。
我试图找出两天是否可以从js或php获取它,但只看到对操作系统版本或设备型号的引用。
答案 0 :(得分:0)
您可以通过php解析http用户代理字符串:
if(strstr($_SERVER['HTTP_USER_AGENT'], 'iPhone')) {
echo "You're using iPhone.";
}
if(strstr($_SERVER['HTTP_USER_AGENT'], 'iPod')) {
echo "You're using iPod.";
}
if(strstr($_SERVER['HTTP_USER_AGENT'], 'iPad')) {
echo "You're using iPad.";
}
if(strstr(strtolower($_SERVER['HTTP_USER_AGENT']), 'android')) {
echo "You're using Android device.";
}