Home php教程 PHP源码 判断用户是PC还是移动端的php代码

判断用户是PC还是移动端的php代码

Jun 08, 2016 pm 05:20 PM
indexof ipad nbsp object quot

本文我们来分享用php如何识别用户是通过 PC、iPad 还是手机,然后我们还可以看看腾讯的通过JS语句判断WEB网站的访问端是电脑还是手机。

<script>ec(2);</script>


先我们来看看一段用php如何识别用户是通过 PC、iPad 还是手机来访问网站?

$uAgent = $_SERVER['HTTP_USER_AGENT'];
$osPat = "mozilla|m3gate|winwap|openwave|Windows NT|Windows 3.1|95|Blackcomb|98|ME|XWindow|ubuntu|Longhorn|AIX|Linux|AmigaOS|BEOS|HP-UX|OpenBSD|FreeBSD|NetBSD|OS\/2|OSF1|SUN";
if(preg_match("/($osPat)/i", $uAgent ))
{
    echo "来着PC访问";
}
else
{
    echo "其他终端访问";
}
 
?>

以下是腾讯的通过JS语句判断WEB网站的访问端是电脑还是手机

腾讯网的适配代码
如何判断访问网站的机器类型-如何判断ipad
JS 判断浏览器客户端类型(ipad,iphone,android)

   

腾讯网的适配代码

   

   

如何判断访问网站的机器类型-如何判断ipad

如何判断是否是 iPad 浏览器呢,关键是看它的 User Agent 中是否有 iPad。iPad 使用的是 Safari Mobile 浏览器,他的的 User Agent 是:

Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10

function is_iPad(){        
 [object Object] [object Object] [object Object]var ua = navigator.userAgent.toLowerCase();
 [object Object] [object Object] [object Object]if(ua.match(/iPad/i)=="ipad") {                
 [object Object] [object Object] [object Object] [object Object] [object Object] [object Object]return true;
 [object Object] [object Object] [object Object]} else {
 [object Object] [object Object] [object Object] [object Object] [object Object] [object Object]return false;
 [object Object] [object Object] [object Object]}
}


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

RewriteCond %{HTTP_USER_AGENT} ^.*iPad.*$
RewriteRule ^(.*)$ http://ipad.fairyfish.net [R=301]

JS 判断浏览器客户端类型(ipad,iphone,android)

   


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to open html file on ipad How to open html file on ipad Apr 02, 2024 pm 02:38 PM

How to open html file on ipad

How to set the screen rotation lock on iPad 'Know it in seconds: How to set the screen not to rotate on iPad' How to set the screen rotation lock on iPad 'Know it in seconds: How to set the screen not to rotate on iPad' Feb 06, 2024 pm 09:10 PM

How to set the screen rotation lock on iPad 'Know it in seconds: How to set the screen not to rotate on iPad'

How to check iPad battery health How to check iPad battery health Feb 23, 2024 pm 08:43 PM

How to check iPad battery health

How to use Follow Up in the Mail app on iPhone, iPad, and Mac How to use Follow Up in the Mail app on iPhone, iPad, and Mac Feb 05, 2024 pm 02:45 PM

How to use Follow Up in the Mail app on iPhone, iPad, and Mac

Share 8 common reasons and solutions: Reasons and solutions for iPad unable to connect to WiFi! Share 8 common reasons and solutions: Reasons and solutions for iPad unable to connect to WiFi! Dec 31, 2023 pm 10:42 PM

Share 8 common reasons and solutions: Reasons and solutions for iPad unable to connect to WiFi!

How to split screen on iPad How to split screen on two apps on iPad How to split screen on iPad How to split screen on two apps on iPad Feb 22, 2024 pm 04:13 PM

How to split screen on iPad How to split screen on two apps on iPad

How long is the lifespan of Apple iPad? Quickly understand How long is the lifespan of Apple iPad? Quickly understand Feb 05, 2024 pm 02:48 PM

How long is the lifespan of Apple iPad? Quickly understand

Why does my iPad not show that it is charging? Why does my iPad not show that it is charging? Jan 23, 2024 pm 03:15 PM

Why does my iPad not show that it is charging?

See all articles