In php, If You Want To determine the browser type, the operation method is very simple. We only need to use the global variable HTTP_USER_AGENT to obtain the user's browser information, so that we can use regular expressions to determine the type or browser version.
PHP determines the browser type and language, because when the browser connects to the server, it will first send some content containing its own information (browser type and language ).
Here we mainly analyze _ SERVER ["HTTP_USER_AGENT"] (browser type) and _ SERVER ["HTTP_ACCEPT_LANGUAGE"] (Browser language ).
All we need to do is read the content and use the strpos or preg_match function for comparison.
Determine the browser type:
The Code is as follows: |
Copy code |
<? Php echo $ _ SERVER ["HTTP_USER_AGENT"];?> |
The PHP code section is provided first. Some of them are not very complete. You need to add them by yourself based on the Huludao. (The following code has a small error. Please read the article and modify it on your own)
The Code is as follows: |
Copy code |
<? Php If (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "MSIE 9.0 ")) Echo & quot; Internet Explorer 9.0 & quot "; Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "MSIE 8.0 ")) Echo & quot; Internet Explorer 8.0 & quot "; Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "MSIE 7.0 ")) Echo & quot; Internet Explorer 7.0 & quot "; Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "MSIE 6.0 ")) Echo & quot; Internet Explorer 6.0 & quot "; Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "Firefox ")) Echo "Firefox "; Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "Chrome ")) Echo "Chrome "; Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "Safari ")) Echo "Safari "; Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "Opera ")) Echo "Opera "; Else echo $ _ SERVER ["HTTP_USER_AGENT"]; ?> |
Open operabrowser and you will see the following page request header information:
Opera/9.80 (Windows NT 5.1; U; Edition IBIS; zh-cn) Presto/2.10.229 Version/11.61
However, the value returned by strpos ($ _ SERVER ["HTTP_USER_AGENT"], "Opera") is always "0"
The solution is relatively simple,
The Code is as follows: |
Copy code |
Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "Opera ")) Replace Else if (strpos ($ _ SERVER ["HTTP_USER_AGENT"], "pera ")) |
Next we will add a stronger one to determine whether it is a browser user or seo/seo.html "target =" _ blank "> Search Engine
The Code is as follows: |
Copy code |
Function my_get_browser (){ If (empty ($ _ SERVER ['HTTP _ USER_AGENT ']) { Return 'COMMAND line. The robot is here! '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'msie 9.0 ')){ Return 'Internet Explorer 9.0 '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'msie 8.0 ')){ Return 'Internet Explorer 8.0 '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'msie 7.0 ')){ Return 'Internet Explorer 7.0 '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'msie 6.0 ')){ Return 'Internet Explorer 6.0 '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'Firefox ')){ Return 'Firefox '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'chrome ')){ Return 'chrome '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'safari ')){ Return 'safari '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], 'Opera ')){ Return 'Opera '; } If (false! = Strpos ($ _ SERVER ['HTTP _ USER_AGENT '], '360se ')){ Return '360se '; } }
|