php语言: <?php $Agent = $_SERVER["HTTP_USER_AGENT"]; $weizhi = strpos($Agent, 'Linux'); if ($weizhi>0) echo "您使用的是手机浏览器"; else echo "您使用的是电脑浏览器"; ?>
asp语言: <% dim a,Agent,weizhi Agent=Request.ServerVariables("HTTP_USER_AGENT") weizhi=InStr(1,Agent,"Linux",compare=1) if weizhi=0 then a="您使用的是电脑浏览器" else a="您使用的是手机浏览器" End If %> <%=a%>
|