Php : Finding Chrome and Safari Browsers

前端 未结 2 1295
夕颜
夕颜 2021-02-19 13:34

I use below code to find user agent,

    $user_agent = $_SERVER[\'HTTP_USER_AGENT\']; 
    if (preg_match(\'/MSIE/i\', $user_agent)) { 
       echo \"Internet          


        
2条回答
  •  日久生厌
    2021-02-19 14:06

    Try this :

    $browser = get_browser(null, true);
    print_r($browser);
    

    From doc : Attempts to determine the capabilities of the user's browser, by looking up the browser's information in the browscap.ini file.

    ref: http://php.net/manual/en/function.get-browser.php

提交回复
热议问题