PHP code determines whether the device is a mobile phone or tablet (two methods), php tablet. PHP code determines whether the device is a mobile phone or tablet computer (two methods). php tablet computers are now more and more developed on the mobile Internet, and many websites are enjoying mobile browsing, to better let PHP code determine whether the device is a mobile phone or tablet (two methods), php tablet
Nowadays, mobile Internet is becoming more and more developed, and many websites are enjoying mobile browsing. to better display webpages on mobile phones, we have chosen to use CSS media queries to create responsive templates, however, this also has drawbacks. for example, some websites have CMS-type structures, and too much content needs to be displayed. the CSS media query design response style only hides but loads the content, to make the mobile phone end display content more quickly, we can use this PHP to determine the phone device code. this code can be used to conveniently display or not display custom content.
Page matching for mobile devices is often required during WEB development. of course, you can directly make the website responsive, but if you don't want to do this, you can use PHP to determine the device type and then display the corresponding interface and content. Today, I am sharing a PHP method to determine whether a device is a mobile phone or tablet. the method is derived from WordPress (wp-des/vars. php: 125) and is applicable to most types of mobile phone/tablet disconnections:
Method 1:
/** * Test if the current browser runs on a mobile device (smart phone, tablet, etc.) * * @staticvar bool $is_mobile * * @return bool */function wp_is_mobile() { static $is_mobile = null; if ( isset( $is_mobile ) ) { return $is_mobile; } if ( empty($_SERVER['HTTP_USER_AGENT']) ) { $is_mobile = false; } elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // many mobile devices (all iPhone, iPad, etc.) || strpos($_SERVER['HTTP_USER_AGENT'], 'Android') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Silk/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Kindle') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'BlackBerry') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mini') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mobi') !== false ) { $is_mobile = true; } else { $is_mobile = false; } return $is_mobile;}
Code 2:
This is the PHP function code used to determine the mobile phone device. it is copied to the PHP function library and called:
<? Phpfunction is_mobile () {$ user_agent = $ _ SERVER ['http _ USER_AGENT ']; $ mobile_browser = Array ("mqqbrowser", // mobile QQ browser "opera mobi ", // cell phone opera "juc", "iuc", // uc Browser "fennec", "ios", "applewebKit/420", "applewebkit/525 ", "applewebkit/532", "ipad", "iphone", "ipaq", "ipod", "iemobile", "windows ce ", // windows phone "240 × 320", "480 × 640", "acer", "android", "anywhereyougo.com", "asus", "audio", "blackberry ", "blazer", "coolpad "," Dopod "," etouch "," hitachi "," htc "," huawei "," jbrowser "," lenovo "," lg "," lg -", "lge-", "lge", "mobi", "moto", "nokia", "phone", "samsung", "sony", "symbian ", "tablet", "tianyu", "wap", "xda", "xde", "zte"); $ is_mobile = false; foreach ($ mobile_browser as $ device) {if (stristr ($ user_agent, $ device) {$ is_mobile = true; break ;}return $ is_mobile ;}?>
This is the call code. you can add if to judge:
<?php if(is_mobile()):?>
Set Mobile Content
<?php endif; ?>
The above is all the content of this article. I hope you will like it.
Ghost (two methods), php tablet computers are now more and more developed on the mobile Internet, and many websites are popularized on mobile terminals, in order to better make...