php代码设置只允许手机端访问禁止pc访问?
php如何利用代码设置只允许手机端访问禁止pc访问?下面编程教程网小编给大家详细介绍一下实现代码!
实现代码如下:
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$clientkeywords = array (
'nokia',
'sony',
'ericsson',
'mot',
'samsung',
'htc',
'sgh',
'lg',
'sharp',
'sie-',
'philips',
'panasonic',
'alcatel',
'lenovo',
'iphone',
'ipod',
'blackberry',
'meizu',
'android',
'netfront',
'symbian',
'ucweb',
'windowsce',
'palm',
'operamini',
'operamobi',
'openwave',
'nexusone',
'cldc',
'midp',
'wap',
'mobile',
'phone',
);
//从HTTP_USER_AGENT中查找手机浏览器的关键字
if (preg_match("/(" . implode('|', $clientkeywords) . ")/i", strtolower($_SERVER['HTTP_USER_AGENT']))) {
return true;
}
}
以上是编程学习网小编为您介绍的“php代码设置只允许手机端访问禁止pc访问?”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。