基于strpos()函数的判断用户浏览器方法

时间:2024-10-23 16:37:26

$_SERVER['HTTP_USER_AGENT'],超全局变量,用来读取客户用的什么浏览器及其版本。

strpos(),指定一个字符并搜索是否包含该字符。

 <html>
<head>
<title>php测试</title>
</head>
<body>
<?php
if(strpos($_SERVER['HTTP_USER_AGENT'],'MSIE') == TRUE){
?>
<h3>真</h3>
<center><b>ie.</b></center>
<?php
}elseif(strpos($_SERVER['HTTP_USER_AGENT'],'Firefox') == TRUE){
?>
<h3>真</h3>
<center><b>firefox.</b></center>
<?php
}else{
?>
<h3>假</h3>
<center><b>其它。</b></center>
<?php
}
?>
</body>
</html>