どうも PHPer です。 ですが、正規表現書きます >< Android のデバイス名が欲しい時があります。 ユーザーエージェントから抜き出すのですがその正規表現書いてみました。 Gist に上げたので修正なんかもお願いします。 こんな風に if (stripos($useragent, 'android')) { if (stripos($useragent, 'mobile')) { // android 標準ブラウザ, android Miren Browser $matches = array(); if (preg_match('/\(Linux; U; Android [0-9A-Za-z\.\;\-\_\s]+; ([0-9A-Za-z\-\_\/]+) Build\/[0-9A-Za-z\.\_\-]+?\)/i', $useragent, $matches)) { ec