Php determines whether the terminal is a mobile phone or a computer accessing the website code

Source: Internet
Author: User
Php determines whether the terminal is a mobile phone or a computer accessing the website code Function check_wap (){
If (isset ($ _ SERVER ['http _ VIA ']) return true;
If (isset ($ _ SERVER ['http _ X_NOKIA_CONNECTION_MODE ']) return true;
If (isset ($ _ SERVER ['http _ X_UP_CALLING_LINE_ID ']) return true;
If (strpos (strtoupper ($ _ SERVER ['http _ ACCEPT ']), "VND. WAP. WML")> 0 ){
// Check whether the browser/gateway says it accepts WML.
$ Br = "WML ";
} Else {
$ Browser = isset ($ _ SERVER ['http _ USER_AGENT '])? Trim ($ _ SERVER ['http _ USER_AGENT ']): '';
If (empty ($ browser) return true;
$ Mobile_ OS _list = array ('Google Wireless Transcoder ', 'windows CE', 'windowsce ', 'symbian', 'Android', 'armv6l', 'armv5 ', 'mobile ', 'cento', 'moyun', 'avantgo ', 'Opera Mobi', 'j2's/MIDP ', 'Smartphone', 'Go. web ', 'Palm', 'ipaq ');

$ Mobile_token_list = array ('Profile/MIDP ', 'configuration/CLDC-', '000000', '000000', '000000', '000000 ', '1970*240 ', '1970*320', 'Up. browser ', 'Up. link ', 'symbian OS', 'palmos ', 'pocketpc', 'sonyericsson', 'Nokia ', 'BlackBerry', 'Vodafone', 'benq ', 'novarra-vision', 'Iris', 'netfront', 'HTC _ ', 'xda _', 'Samsung-sgh', 'wapaka ', 'docomo ', 'iPhone ', 'iPod ');

$ Found_mobile = checkSubstrs ($ mobile_ OS _list, $ browser) |
CheckSubstrs ($ mobile_token_list, $ browser );
If ($ found_mobile)
$ Br = "WML ";
Else $ br = "WWW ";
}
If ($ br = "WML "){
Return true;
} Else {
Return false;
}
}

Function checkSubstrs ($ list, $ str ){
$ Flag = false;
For ($ I = 0; $ I If (strpos ($ str, $ list [$ I])> 0 ){
$ Flag = true;
Break;
}
}
Return $ flag;
}

If (check_wap ()){
Echo "wap ";
} Else {
Echo "web ";
}

?>

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.