2013-06-27 55 views
0

思考適當的時刻爲建立我的網頁在移動用戶願意,它應該是這樣,他們來到網站,所以它必須是一個盒子問用戶是否要在移動網站的右側或者移動網站上,它只能在你使用移動電話時才能使用,但是如果在他的電腦上使用了這種移動電話,則無法這麼做。找出哪些網頁我會在移動

如果你認爲你必須在移動網頁上,所以你將拉開到m.mobil.com

,如果你想留在正常側你只是mobil.com,

它只會這樣做,如果它的android,iphone或窗口電話

它不會這樣做,如果你是他的ipad或類似的手機如ipad。

+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 
     } 

?>