当特定的用户代理访问链接时,我正在尝试执行操作。
所以我有这样的代码:
//if browser is not Mozilla/4.2, then do something.
//but if its Mozilla/4.2, do another thing.
if(strlen(strstr($_SERVER['HTTP_USER_AGENT'],"Mozilla/4.2")) <= 0 ){
// Do something
} else {
//Else do another thing code follows.
}
上面的代码可以正常工作,但是它在错误日志"Undefined index: HTTP_USER_AGENT"
solution i saw used pregmatch,但仅针对单个用户代理。
任何帮助将不胜感激。
答案 0 :(得分:1)
您只需要检查$ _SERVER上索引(HTTP_USER_AGENT)的存在,如果未设置,则将其设置为空字符串。
这可以通过做来实现;
$userAgent = ! empty($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
if(strlen(strstr($userAgent,"Mozilla/4.2")) <= 0 ) {
// Do something
} else {
// Do something else.
}