Detecting the code for an Android device through JavaScript or PHP

Source: Internet
Author: User
Tags copy
With the return of jobs, IPad2 's release seems to be getting hotter on the mobile side of the development topic. Here's a list of some of the biggest competitors in iOS-the Android (Android) system detection method.

JavaScript Judgment method

Searching for the Android word in the user agent string is the most time-saving method:
Copy Code code as follows:
if (Navigator.userAgent.match (/android/i)) {
Do something!
Redirect to Android-site?
window.location = ' http://android.davidwalsh.name ';
}

How to Judge PHP

Again, we can use the Strstr method in PHP to search for Android in the user agent:
Copy Code code as follows:
if (strstr ($_server[' http_user_agent '], ' Android ')) {
Header (' Location:http://android.davidwalsh.name ');
Exit ();
}

In addition, you can use the. htaccess to judge

We can use. htaccess to judge and respond to Android devices!
Copy Code code as follows:
Rewritecond%{http_user_agent} ^.*android.*$
Rewriterule ^ (. *) $ http://android.davidwalsh.name [r=301]

So you have all the three kinds of detection methods for Android devices.

Original link: http://article.yeeyan.org/view/56089/176760

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.