目录

PHP get_browser() 函数

❮ PHP 其他参考

示例

查找 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 中添加了参数

❮ PHP 其他参考