実行結果' ;
// スマホの場合だけテキストを表示する
if( $detect->isMobile() && !$detect->isTablet() )
{
$html .= '
' ;
// 各メソッドを実行する
foreach( array( 'isiPhone' , 'isBlackBerry' , 'isNexus' , 'isSamsung' ) as $method )
{
$html .= '- ' . $method . '()
' ;
$html .= '- ' . ( ( $detect->{ $method }() ) ? 'true' : 'false' ) . '
' ;
}
$html .= '
' ;
}
// デスクトップ、またはタブレットの場合だけテキストを表示する
else
{
$html .= 'あなたの端末はスマホじゃありません…。スマホでアクセスして下さい。
' ;
}
?>
Mobile Detectで、スマホの機種を判定するサンプルデモ
配布元: Syncer