zblog开发时如果需要检测访客使用的是移动设备还是PC电脑,可以使用HTTP_USER_AGENT来实现,HTTP_USER_AGENT可以获取网站访客使用的操作系统(包括版本号)、浏览器(包括版本号)以及其它信息,那么要想知道访问者使用的是手机还是电脑就可以通过判断操作系统或者浏览器来实现。
把下面的代码放在主题的include.php文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?php function boke8_isMobile() { static $is_mobile = null; if ( isset( $is_mobile ) ) { return $is_mobile; } if ( empty($_SERVER['HTTP_USER_AGENT']) ) { $is_mobile = false; } elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // many mobile devices (all iPhone, iPad, etc.) || strpos($_SERVER['HTTP_USER_AGENT'], 'Android') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Silk/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Kindle') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'BlackBerry') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mini') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mobi') !== false ) { $is_mobile = true; } else { $is_mobile = false; } return $is_mobile; } ?> |
在主题模板中使用
1 2 3 4 5 |
{if boke8_isMobile()} 您正在使用移动设备访问该页面 {else} 您正在使用电脑访问该页面 {/if} |
代码摘自:https://blog.csdn.net/qq_41399976/article/details/98943134
原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/248696.html