我试图传递的字符串是“www.he2media.com/index.php?mobile=false”我做错了什么?
<?PHP
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
$ismobiledevice;
if($_GET['mobile']=== "")
{
$ismobiledevice=0;
}
if($_GET['mobile']==="false")
{
$ismobiledevice=1;
}
if($detect->isMobile()&& empty($ismobiledevice))
{
header("Location:http://m.he2media.com");
}
else
{
header("Location:http://www.he2media.com");
}
?>