123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- function p($arr)
- {
- echo '<pre>';
- print_r($arr);
- echo '<pre>';
- }
- if(!function_exists('is_mobile'))
- {
- function is_mobile()
- {
- if(isset($_SERVER['HTTP_USER_AGENT']))
- {
- $agent = strtolower($_SERVER['HTTP_USER_AGENT']);
- $is_pc = (strpos($agent, 'windows nt')) ? true : false;
- $is_mac = (strpos($agent, 'mac os')) ? true : false;
- $is_iphone = (strpos($agent, 'iphone')) ? true : false;
- $is_android = (strpos($agent, 'android')) ? true : false;
- $is_ipad = (strpos($agent, 'ipad')) ? true : false;
- if($is_iphone){
- return true;
- }
- if($is_android){
- return true;
- }
- if($is_ipad){
- return true;
- }
- }
- }
- }
|