Heim > Artikel > Backend-Entwicklung > So beurteilen Sie PC-Browser und mobile Browser mit PHP
function isMobile()
{
// Wenn HTTP_X_WAP_PROFILE vorhanden ist, muss es ein mobiles Gerät sein
if (isset ($_SERVER['HTTP_X_WAP_PROFILE']))
{
return true;
}
// Wenn die Via-Informationen WAP enthalten, muss es sich um ein mobiles Gerät handeln.
if (isset ($_SERVER['HTTP_VIA'] ))
{ // FLASE kann nicht gefunden werden, sonst True
Return Stristr ($ _ server ['http_via'], "wap")? True: false; // Gehirnbehinderungsmethode, beurteilen Sie das Mobiltelefon. Client-Flag gesendet, Kompatibilität muss verbessert werden
if (isset ($_SERVER['HTTP_USER_AGENT']))
{
$clientkeywords = array ('nokia' ,
'sony',
'ericsson',
'mot',
'samsung',
'htc',
'sgh',
'lg',
'sharp',
'sie-',
'philips',
'panasonic',
'alcatel',
'lenovo',
'iphone',
'ipod',
'blackberry',
'meizu',
'android',
'netfront',
'symbian',
'ucweb',
'windowsce',
'palm',
'operamini',
'operamobi',
'openwave',
'nexusone',
'cldc',
'midp',
' wap',
. ")/i", strtolower($_SERVER['HTTP_USER_AGENT'])))
, überlasse es dem endgültigen Urteil
wenn ( isset ($_SERVER['HTTP_ACCEPT']))
{
// Wenn es nur WML und nicht HTML unterstützt, muss es ein mobiles Gerät sein
// Wenn WML und HTML unterstützt werden, WML jedoch vor HTML steht, handelt es sich um ein mobiles Gerät
If ((strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml') !== false) && ( strpos($ _SERVER['HTTP_ACCEPT'], 'text/html') === false ||. (strpos($_SERVER['HTTP_ACCEPT'], 'vnd.wap.wml')