欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php检测用户是否用手机(Mobile)访问网站

程序员文章站 2022-04-04 22:49:26
...

一个基于MIT License协议开源的PHP程序: http://code.google.com/p/php-mobile-detect/

程序就是一个文件,下载之后直接引用就可以。

使用方法:

  1. //检测是否手机访问网站
  2. include("Mobile_Detect.php");
  3. $detect = new Mobile_Detect();
  4. if ($detect->isMobile()) {
  5. // any mobile platform
  6. echo 'isMobile';
  7. }
  8. else{
  9. echo 'isPC';
  10. } // bbs.it-home.org
  11. ?>
复制代码