0

我已经下载了一个 php 代码来检测设备(指手机或平板电脑)。它正在工作,但是。但是在检测到我何时尝试重定向到另一个页面后,它不起作用

这是我调用的检测方法

代码如下

$detec=detectBrowser();
if($detec==true)
{   

header("location: http://www.google.com"); 
}

它正在打印你好但不重定向。

4

1 回答 1

0

PHP 文件的第二行(在 之后<?php):

// Turn on ALL error reporting
ini_set('display_errors',1); 
error_reporting(E_ALL);

检测代码:

$detect = detectBrowser();
if($detect == true) {
   // The user is using a mobile device. Proceed to the next URL.
   header("Location: http://www.url.com/mobile/");
} else {
   // The user is not using a mobile device.
   header("Location: http://www.url.com/non-mobile/");
}

试试这个代码。它检查用户是否不在移动设备上,它会重定向到非移动设备,或者如果用户正在使用移动设备,那么它会转到移动站点。

于 2013-10-01T14:03:11.017 回答