Get operating system info

后端 未结 7 1192
借酒劲吻你
借酒劲吻你 2020-11-22 14:48

I recently started wondering about sites like http://thismachine.info/ that get the user\'s operating system info. I have not been able to find out how to do that with PHP,

7条回答
  •  礼貌的吻别
    2020-11-22 15:41

    Took the following code from php manual for get_browser.

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

    The $browser array has platform information included which gives you the specific Operating System in use.

    Please make sure to see the "Notes" section in that page. This might be something (thismachine.info) is using if not something already pointed in other answers.

提交回复
热议问题