foroco / php-browser-detection

Ultra fast PHP library to detect browser, OS, platform and device type by User-Agent parsing
MIT License
137 stars 33 forks source link

Added 64bits detection #1

Closed halojoy closed 3 years ago

halojoy commented 4 years ago

I like your browser detection script. I however missed 64 bits detection. It is very easy to add. Here is my code

     OS DETECTION
        --------------
        */

        // 64 bits Detection
        $data = 'WOW64|Win64|AMD64|x86_64|x86-64|ia64|IRIX64|ppc64|sparc64|x64;|x64_64';
        if ($this->matchi_ua($data))
            $this->result_os_64bit = 'yes';
foroco commented 4 years ago

Ok. Thank you. It's planned for next version

foroco commented 3 years ago

Successfully done. Thank you for participating!