时间:2021-07-01 10:21:17 帮助过:23人阅读
代码如下:
if(navigator.userAgent.match(/Android/i)) {
// Do something!
// Redirect to Android-site?
window.location = 'http://android.davidwalsh.name';
}
代码如下:
if(strstr($_SERVER['HTTP_USER_AGENT'],'Android')) {
header('Location: http://android.davidwalsh.name');
exit();
}
代码如下:
RewriteCond %{HTTP_USER_AGENT} ^.*Android.*$
RewriteRule ^(.*)$ http://android.davidwalsh.name [R=301]
以上就介绍了PHP与Javascript 通过JavaScript或PHP检测Android设备的代码,包括了PHP与Javascript方面的内容,希望对PHP教程有兴趣的朋友有所帮助。