当前位置:Gxlcms > PHP教程 > 判断访问者所用设备是iPhone、iPad或PC电脑的方法

判断访问者所用设备是iPhone、iPad或PC电脑的方法

时间:2021-07-01 10:21:17 帮助过:29人阅读

2、php实现

  1. //方法1

  2. $is_iPad = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad');

  3. //方法2

  4. $agent = strtolower($_SERVER['HTTP_USER_AGENT']);
  5. $is_pc = (strpos($agent, 'windows nt')) ? true : false;
  6. $is_iphone = (strpos($agent, 'iphone')) ? true : false;
  7. $is_ipad = (strpos($agent, 'ipad')) ? true : false;
  8. if($is_pc){
  9. echo "PC机"; //by http://bbs.it-home.org
  10. }
  11. if($is_iphone){
  12. echo "iPhone";
  13. }
  14. if($is_ipad){
  15. echo "iPad";
  16. }
  17. ?>

3、htaccess

  1. RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$
  2. RewriteRule ^(.*)$ http://ipad.jbxue.com [R=301]

如果是 iPad 浏览器,跳转到 iPad 页面。

人气教程排行