找出我将在Mobile上的哪些页面

时间:2013-06-27 22:06:48

标签: php javascript css3

考虑在移动用户愿意建立我的页面的正确时刻,它应该是这样的,他们来到网站所以它必须是一个盒子,询问用户是在右侧还是在移动网站上,它必须只有你在移动电话上才会这样做,但是如果你的电脑上有人不能这样做的话。

如果您认为必须在移动页面上,那么您将被踢到m.mobil.com

如果你想保持正常的一面,你只是mobil.com,

只有它是android,iphone或windows phone

才会这样做

如果你是他的ipad或类似ipad的手机,它就不会这样做。

1 个答案:

答案 0 :(得分:0)

由于您使用的是PHP,我推荐使用Mobile_Detect类。我很适合我,很容易。

https://code.google.com/p/php-mobile-detect/

它可以检测到任何移动设备。这可以在您的index.php文件

使用示例。

 <?php
        // Include and instantiate the class.
        require_once 'Mobile_Detect.php';
        $detect = new Mobile_Detect;

        // Any mobile device (phones or tablets).
        if ( $detect->isMobile() ) {
        //do stuff, redirect or whatever
        }

        // Check if an iphone, ipad etc:
        if( $detect->isiOS() ){
        //do stuff, redirect or whatever
        }
        //check if an Android device
        if( $detect->isAndroidOS() ){
        //do stuff, redirect or whatever
        }

 ?>