tw fc2 to 2nt
..

ハダカのブログ                IP: 18.188.152.162

Mobile_Detect.php のバージョン

Mobile_Detect.php は、優れたPHPのライブラリの一つだ。ただ iPhone 8 や iPhone X であっても スマホとして認識してくれるだろう。そして、日本だけを対象にしていないから頼もしい。もう ガラ携 時代は終わったので、変な心配は無用なんだろう。ただ、たまには Mobile_Detect.php 自体のバージョンを確認して更新はしようと思うので記録しておく。

Mobile_Detect.php サイト
http://mobiledetect.net/

一応、使い方も

require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
// Any mobile device (phones or tablets).
if ( $detect->isMobile() ) {
}
// Any tablet device.
if( $detect->isTablet() ){
}
// Exclude tablets.
if( $detect->isMobile() && !$detect->isTablet() ){
}

うん、シンプルで素晴らしい。

pr
Copyright(c) 2007 ハダカのブログ