我是写在phpok系统的模板里的,注意语法
<!--php-->
function isMobileAgent()
{
$bool = false;
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);
if (strpos($userAgent, 'android') && strpos($userAgent, 'mobile')) $bool = true;
else if (strpos($userAgent, 'iphone')) $bool = true;
else if (strpos($userAgent, 'ipod')) $bool = true;
return $bool;
}
<!--/php-->
<!-- if isMobileAgent() -->
这里写手机版代码
<!-- else -->
这里电脑端布局
<!-- /if -->