在開發網站時有時需要判斷客戶端 顯示不同的頁面,總結如下:
php判斷用戶端
if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'iphone') !== false) {
define(ClientType, 'iphone'); //IOS用戶
} else if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'android') !== false) {
define(ClientType, 'android'); //安卓用戶
} else {
define(ClientType, 'web'); //web用戶
}
*