我正在使用下面的代码来检查访问者是否正在使用 Chrome 浏览器:
<?php
function is_chrome()
{
return(eregi("chrome", $_SERVER['HTTP_USER_AGENT']));
}
if(is_chrome())
{
echo 'You are using Google Chrome Browser.';
}
?>
还
<?php
function is_firefox()
{
return(eregi("firefox", $_SERVER['HTTP_USER_AGENT']));
}
if(is_chrome())
{
echo 'You are using Firefox Browser.';
}
?>
工作正常,但我如何组合或如何使用“或”功能,以便检查 httpuseragent 是否包含“chrome”或“firefox”?
谢谢