czepter/detect-device
Composer 安装命令:
composer require czepter/detect-device
包简介
fork of the incredible work of Kevin Warren (detectdevice.com). Easy to use lib for device detection.
README 文档
README
Simply include or require the class file & use. No need to instantiate the class as all methods are static:
require_once '../vendor/autoload.php'; require_once '../src/Detect.php'; // Any mobile device (phones or tablets) if (Detect\Detect::isMobile()) { echo 'is mobile!'; } // Gets the device type ('Computer', 'Phone' or 'Tablet') echo Detect\Detect::deviceType(); // Any phone device if (Detect\Detect::isPhone()) { echo 'is phone!'; } // Any tablet device if (Detect\Detect::isTablet()) { echo 'is tablet!'; } // Any computer device (desktops or laptops) if (Detect\Detect::isComputer()) { echo 'is computer!'; } // Get the IP address of the device echo Detect\Detect::ip(); // Get the ID address host name of the device echo Detect\Detect::ipHostname(); // Get the IP address organisation of the device echo Detect\Detect::ipOrg(); // Get the country the IP address is in (IP address location inaccurate) // (JS function available which uses the Geolocation API) echo Detect\Detect::ipCountry(); // Get the name & version of operating system echo Detect\Detect::os(); // Get the name & version of browser echo Detect\Detect::browser(); // Detect\Detects if IE is version 9 or less & if it is, returns a warning: // <strong>YOU ARE USING AN OUTDATED BROWSER</strong><br>It is limiting your experience.<br>Please upgrade your browser. // Optionally, send html to be prepended or appended to warning echo Detect\Detect::ieOld([$prependHTML = ''],[ $appendHTML = '']); // Get the brand of device (only works with mobile devices otherwise return null) echo Detect\Detect::brand(); // Check for a specific platform with the help of the magic methods: if (Detect\Detect::isiOS()) { } if (Detect\Detect::isAndroidOS()) { }
Copyright
Developed by Kevin Warren
Download of plain version under detectdevice.com
Detect Device is an open-source script released under MIT License
czepter/detect-device 适用场景与选型建议
czepter/detect-device 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 423 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 04 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 czepter/detect-device 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 czepter/detect-device 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 423
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-15