在PHP中检测移动设备的最简单方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在PHP中检测移动设备的最简单方法相关的知识,希望对你有一定的参考价值。

判断用户是否正在使用移动设备通过php浏览我的网站的最简单方法是什么?

我遇到了许多可以使用的类,但是我希望有一个简单的if条件!

我有办法吗?

答案

Detect Mobile Browser

  • 代码:

    <?php $useragent=$_SERVER['HTTP_USER_AGENT']; if(preg_match('/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i',$useragent)||preg_match('/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i',substr($useragent,0,4))) header('Location: http://detectmobilebrowser.com/mobile'); ?>

  • 另一答案
    该代码通过preg_match()检测经过数百次测试后仅在移动设备用户代理字符串中找到的单词,从而根据用户代理字符串检测到用户。它在当前所有移动设备上都具有100%的准确性,而我目前正在对其进行更新,以支持更多的移动设备问世。该代码称为isMobile,如下所示:

    function isMobile() return preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"]);

    您可以这样使用它:

    // Use the function
    if(isMobile())
        // Do something for only mobile users
    
    else 
        // Do something for only desktop users
    
    

    要将用户重定向到您的移动网站,我会这样做:

    // Create the function, so you can use it
    function isMobile() 
        return preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"]);
    
    // If the user is on a mobile device, redirect them
    if(isMobile())
        header("Location: http://m.yoursite.com/");
    
    

    让我知道您是否有任何疑问和好运!

    另一答案
    None
    另一答案
    None
    另一答案
    http://mobiledetect.net/

    像这样使用

    //include the file require_once 'Mobile_Detect.php'; $detect = new Mobile_Detect; // Any mobile device (phones or tablets). if ( $detect->isMobile() ) //do some code // Any tablet device. if( $detect->isTablet() ) //do some code

    另一答案
    None
    另一答案
    implode()
    另一答案
    Mobile device detection in PHP
    另一答案
    None
    另一答案

    从http://sourceforge.net/projects/fiftyone/下载Zip文件。

      将文件解压缩到PHP服务器中的目录中。
    1. 然后将以下代码添加到您的PHP页面:
    2. PHP device detection from 51Degrees.com
    3. 所有可用的设备信息将包含在$ _51d数组中:
    4. require_once 'path/to/core/51Degrees.php';
      require_once 'path/to/core/51Degrees_usage.php';
      
  • 51表示设备检测器不使用正则表达式进行检测。 HTTP标头仅重要部分用于匹配设备。由于每周都会向数据库添加数百种新设备(支持的设备类型包括控制台,智能电视,电子阅读器,平板电脑等)。
    该软件是根据Mozilla Public License 2发布的开源软件,并且与商业和开源项目兼容。另外,51Degrees解决方案还包含一个互补的if ($_51d['IsMobile'])
    
        //Start coding for a mobile device here.
    
    ,可以自动调整移动设备的图像大小。

    默认为51度,PHP设备检测器使用Lite数据文件,该文件是免费的,包含30000多个设备和每个设备50个属性。 Lite文件每3个月更新一次。如果您想获得有关请求移动设备的更高级别的详细信息,则可以使用Premium和Enterprise数据文件。 Premium包含超过70000台设备,每台设备每周更新一次的属性为100个。企业每天更新一次,其中包含超过150000个设备,每个设备有150个属性。

    PHP image optimiserFull list of device properties

  • 另一答案
    www.useragentinfo.co

    如果访客使用的是iPhone,这是示例响应:

    <?php
    $useragent = $_SERVER['HTTP_USER_AGENT'];
    // get api token at https://www.useragentinfo.co/
    $token = "<api-token>";
    $url = "https://www.useragentinfo.co/api/v1/device/";
    
    $data = array('useragent' => $useragent);
    
    $headers = array();
    $headers[] = "Content-type: application/json";
    $headers[] = "Authorization: Token " . $token;
    
    $curl = curl_init($url);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data));
    
    $json_response = curl_exec($curl);
    
    $status = curl_getinfo($curl, CURLINFO_HTTP_CODE);
    
    if ($status != 200 ) 
        die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl));
    
    
    curl_close($curl);
    
    echo $json_response;
    ?>
    
    另一答案
    None
    另一答案
    现在您在客户端和服务器端都具有cookie,可以用它来确定手机,平板电脑和其他设备

    这里有一个简单的示例,说明如何使用javascript进行操作。警告! [此代码包含伪代码]。

    function isMobile() if(defined(isMobile))return isMobile; @define(isMobile,(!($HUA=@trim(@$_SERVER['HTTP_USER_AGENT']))?0: ( preg_match('/(android|bb\d+|meego).+mobile|silk|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i' ,$HUA) || preg_match('/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-

    以上是关于在PHP中检测移动设备的最简单方法的主要内容,如果未能解决你的问题,请参考以下文章

    PHP 在移动设备中检测设备

    检测移动设备的最佳方法是啥?

    PHP 服务器端移动设备检测

    PHP 检测移动设备(使用者)

    PHP 移动设备检测

    使用 JavaScript 和 Razor 检测移动设备