我用 Mobile_Detect.php 构建了一个移动检测,效果很好。现在,如果用户不想留在移动网站上,他可以单击“桌面版本”并通过设置$_SESSION['mobile'] = 'off'
.
主站点执行以下代码:
<?php
session_start();
// Did the User come back from mobile.php?
if ($_SESSION['mobile'] != 'off') {
include 'Mobile_Detect/Mobile_Detect.php';
$detect = new Mobile_Detect();
// Smartphone?
if ($detect->isMobile() && !$detect->isTablet()) {
// Redirection --> echo 'JS'
echo "<script>window.location='mobile.php'</script>";
}
}
?>
问题似乎是if ($_SESSION['mobile'] != 'off')
被忽略或错误。我的 iPhone 总是将我直接发送回“mobile.php”。
任何人都可以帮忙吗?
也许我应该向您展示“mobile_off.php”中的代码:
<?php
session_start();
$_SESSION['mobile'] = 'off';
?>