PHP 獲取裝置型別

xiaocailc發表於2018-09-28

前言

有時,我們後臺需要獲取到訪問介面的裝置型別,下面方法就可以解決這個問題。

實現方法

$agent       = strtolower($_SERVER['HTTP_USER_AGENT']);

$device_type = 'unknown';

$device_type = (strpos($agent, 'windows nt')) ? 'pc' : $device_type;

$device_type = (strpos($agent, 'iphone')) ? 'iphone' : $device_type;

$device_type = (strpos($agent, 'ipad')) ? 'ipad' : $device_type;

$device_type = (strpos($agent, 'android')) ? 'android' : $device_type;

return $device_type;

相關文章