Home  >  Article  >  Backend Development  >  PHP determines whether the client is IOS or Android

PHP determines whether the client is IOS or Android

WBOY
WBOYOriginal
2016-07-25 08:42:55846browse
  1. if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone')||strpos($_SERVER['HTTP_USER_AGENT'], 'iPad')){
  2. echo 'systerm is IOS';
  3. }else if(strpos($_SERVER['HTTP_USER_AGENT'], 'Android')){
  4. echo 'systerm is Android';
  5. }else{
  6. echo 'systerm is other';
  7. }
  8. ?>
复制代码

PHP, IOS, Android


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn