【用于检测访问者是否在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).
- function isItAndroid( )
- {
- $ua = strtolower( $_SERVER[ 'HTTP_USER_AGENT'] ) ;
- if( stripos( $ua,'android') !== false) return true;
- else return false;
- }
推荐阅读
- 使用AppleScript重新启动Django开发服务器
- AppStore从网站自动检测应用程序
- JPA NonflushableQueryRapper公司
- Android(将文本绘制为动态大小的位图)
- 在Android应用程序中加载现有电子邮件并修改其内容
- 加载应用程序后刷新UIAppearance
- HTML中的Favicon和Apple图标
- 深入研究React Native(初学者教程)
- HTTP Live Streaming简介(Android上的HLS等)