我正在尝试让这个 PHP 轻量级移动检测 (https://github.com/serbanghita/Mobile-Detect) 与我们基于 Wordpress + W3 Total Cache 和 APC 的安装一起使用。
但是,对象缓存会缓存 Mobile_Detect.php 文件,它最终只会为任何站点上的第一个访问者工作,之后信息被缓存并且它不起作用。
我将 apc.filters 指定给 Mobile_Detect.php 是否足以让它工作?或者还有什么需要考虑的?
<?php
include 'mobile-detect/Mobile_Detect.php';
$detect = new Mobile_Detect();
?>
<?php
if ($detect->isMobile()) { ?>
<!-- do some mobile stuff -->
<?php } else { ?><!-- do something else --><?php } ?>