Php function implementation to determine whether mobile access is required _ PHP Tutorial

Source: Internet
Author: User
Php functions are used to determine whether mobile access is required. Php function implementation determines whether to visit the mobile end. This article shares with you a function used by php to determine whether to visit the mobile end. it was previously added to the favorites. it is released here and recommended to our friends. Php function implementation to determine whether Mobile access

This article will share with you a function used by php to determine whether to access mobile terminals. it was previously added to the favorites list. it is released here and recommended to our friends.

I forgot where I got the function. I just couldn't find it in a package and saved it temporarily.

The code is as follows:


/**
* Mobile access?
*
* @ Return bool
*/
Function isMobile ()
{
// If HTTP_X_WAP_PROFILE exists, it must be a mobile device.
If (isset ($ _ SERVER ['http _ X_WAP_PROFILE '])
{
Return true;
}
// If the via information contains wap, it must be a mobile device. some service providers will block this information.
If (isset ($ _ SERVER ['http _ vean'])
{
// Flase cannot be found; otherwise, true
Return stristr ($ _ SERVER ['http _ vean'], "wap ")? True: false;
}
// Identify the client flag sent by the mobile phone. the compatibility needs to be improved.
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 ',
'Mobile'
);
// Search for the keyword of the mobile browser from HTTP_USER_AGENT
If (preg_match ("/(". implode ('|', $ clientkeywords). ")/I", strtolower ($ _ SERVER ['http _ USER_AGENT '])
{
Return true;
}
}
// Resolution, which may be inaccurate and placed in the final judgment
If (isset ($ _ SERVER ['http _ ACCEPT '])
{
// If only wml is supported and html is not supported, it must be a mobile device.
// If wml and html are supported, but wml is a mobile device before html
If (strpos ($ _ SERVER ['http _ ACCEPT '], 'vnd. wap. wml ')! = False) & (strpos ($ _ SERVER ['http _ ACCEPT '], 'text/html ') === false | (strpos ($ _ SERVER ['http _ ACCEPT '], 'vnd. wap. wml ') <strpos ($ _ SERVER ['http _ ACCEPT'], 'text/html '))))
{
Return true;
}
}
Return false;
}

Very simple and practical functions. I hope you will like them.

In this article, I will share with you a php function used to determine whether to access mobile terminals. it was previously added to my favorites. I will post it here and recommend it to my friends ....

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.