查找 browscap.ini 文件并返回浏览器的功能:
<?php
echo $_SERVER['HTTP_USER_AGENT'];
$browser = get_browser();
print_r($browser);
?>
亲自试一试 »
get_browser() 函数查找用户的 browscap.ini 文件并返回用户浏览器的功能。
get_browser(
user_agent,return_array)
Parameter | Description |
---|---|
user_agent | Optional. Specifies the name of an HTTP user agent. Default is the value of $HTTP_USER_AGENT. You can bypass this parameter with NULL |
return_array | Optional. If this parameter is set to TRUE, the function will return an array instead of an object |
返回值: | 成功时返回一个对象或数组,其中包含有关用户浏览器的信息,失败时返回 FALSE |
---|---|
PHP 版本: | 4+ |
变更日志: | 这个返回数组PHP 4.3.2 中添加了参数 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!