How to get current browser information in PHP

藏色散人
Release: 2019-01-18 17:12:28
Original
12208 people have browsed it

PHP obtains the current browser information. We can directly use the super global variable $_SERVER in PHP to obtain the specified browser information.

How to get current browser information in PHP

$_SERVER is an array containing information such as header, path, and script locations. The items in this array are created by the web server. There is no guarantee that every server will offer all items; servers may ignore some, or serve items not listed here.

Below we use a simple code example to obtain the current browser information.

The code example is as follows:

<?php

//获取当前浏览器的信息
echo "你的浏览器是:".$_SERVER[&#39;HTTP_USER_AGENT&#39;];

var_dump($_SERVER);
Copy after login

Here we get the current browser information and print it as follows:

How to get current browser information in PHP

Note: ## Prior to #PHP 5.4.0, $HTTP_SERVER_VARS contained the same information, but it was not a superglobal variable. (Note that $HTTP_SERVER_VARS and $_SERVER are different variables, and PHP handles them differently)

HTTP_USER_AGENT

The content of the User-Agent: item in the current request header, If exists. This string indicates information about the user agent accessing this page. A typical example is: Mozilla/4.5 [en] (X11; U; Linux 2.2.9 i586). Alternatively, you can use this value via get_browser() to tailor the page output to suit the user agent's capabilities.

This article is an introduction to the method of obtaining the current browser information with PHP. It is also very simple and easy to understand. I hope it will be helpful to friends in need!

The above is the detailed content of How to get current browser information in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!