因為目前裝置已經不只有電腦,可能有電腦、平板及手機,如何去判別user的瀏覽器然後給予不同內容,這樣的功能變得非常重要,今天發現了一個很簡單的方法~用網友寫好的Mobile Detect class來做判斷,官網在下方,
http://mobiledetect.net/;
那斷的方式也很簡單~
範例如下~
- require_once(“Mobile_Detect.php”);
- $detect = new Mobile_Detect;
- $deviceType = ($detect->isMobile() ? ($detect->isTablet() ? ‘tablet’ : ‘phone’) : ‘computer’);
- <?php $check = $detect->isMobile(); if($check): ?>
- 是的話做的事
- <?php else: ?>
- 不是的話做的事
- <?php endif; ?>
延伸閱讀
http://blog.wingzero.tw/2014/09/php.html
[……]