How php judges the mobile phone system

Source: Internet
Author: User
: This article describes how to determine the mobile phone system of php. For more information about PHP tutorials, see. Scan the QR code to download the App. do you know how it works?

The scanned QR code is essentially a link, which executes a method to redirect to different App download platforms based on different mobile phone systems.

Header ("Content-type: text/html; charset = utf-8"); $ user_agent = $ _ SERVER ['http _ USER_AGENT ']; // return the mobile phone system and model information // var_dump ($ user_agent); if (stristr ($ _ SERVER ['http _ USER_AGENT '], 'Android ')) {// whether the Android keyword exists in the returned value // echo 'Your mobile phone is: Android system'; header ('Location: http: // xxx ');} else if (stristr ($ _ SERVER ['http _ USER_AGENT '], 'iPhone') {// echo 'Your mobile phone is: IOS system'; header ('Location: https: // xxx ');} else if (stristr ($ _ SERVER ['http _ USER_AGENT'], 'windowsphone ')) {// echo 'your system is WindowsPhone '; header ('Location: http: // xxx');} else {header ('Location: http: // xxx ');}

The above describes how to determine the mobile phone system of php, including the content, and hope to help friends who are interested in PHP tutorials.

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.