我想要做的是专门为 IE9 制作一个 PHP Conditional。到目前为止我尝试过的是这两个 PHP 浏览器条件
if(preg_match('/(?i)msie [9]/',$_SERVER['HTTP_USER_AGENT']))
{
//my code here
exit;
}
if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)
{
//my code here
}
我写错了吗?我错过了什么吗?