PHP判断浏览器是否为IE6

  • 发表于
  • PHP

IE6.0是所有网页设计人员,程序员的恶梦,我恨了它N年了,现在我决定彻底拒绝IE6.0的访问

if(strpos($_SERVER['HTTP_USER_AGENT'],'MSIE 6.0') == true )
{
// ie 6.0
header('Location: ../ie6_page.php');
}
else
{
//not ie 6.0
header('Location: ../not_ie6_page.php');
}