目前平板电脑和智能手机普遍,我们可以修改下程序文件,让ipad,iphoe,android,windows等系统的平板电脑和大屏幕智能手机能看到和电脑上一样漂亮的界面 首先我们在后台设置下
修改index.php $uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile)/i"; if(($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap')) 修改为 $uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile)/i"; $smartuachar = "/(iphone|ipad|android|smartphone|windows)/i"; if(!(preg_match($smartuachar, $ua)) && ($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap'))(责任编辑:最模板) |