用于检测访问者是否在android设备上的函数

【用于检测访问者是否在android设备上的函数】智者不为愚者谋,勇者不为怯者死。这篇文章主要讲述用于检测访问者是否在android设备上的函数相关的知识,希望能为你提供帮助。
This simple functions scans the user agent for the word " android" and returns true if found. Useful if there' s something you only want android visitors to see (or not see).

  1. function isItAndroid( )
  2. {
  3. $ua = strtolower( $_SERVER[ 'HTTP_USER_AGENT'] ) ;
  4. if( stripos( $ua,'android') !== false) return true;
  5. else return false;
  6. }


    推荐阅读