推荐:《php视频教程》
php判断电脑访问还是手机访问:
手机上网用户数量越来越大,如今各网站都推出了手机网站,电脑用户访问时直接访问电脑版网页,当用户通过手机访问网站时则跳自动跳转到手机版网页,下面给大家分享一段php中判断电脑访问还是手机访问的代码:
<?php//手机网页跳转//如果检测到访问的浏览器为下列一个指定的移动浏览器 则返回truefunction is_mobile(){ $regex_match="/(nokia|iphone|android|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|"; $regex_match.="htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|coolpad|webos|techfaith|palmsource|"; $regex_match.="blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam\-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|"; $regex_match.="symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte\-|longcos|pantech|gionee|^sie\-|portalmmm|"; $regex_match.="jig\s browser|hiptop|^ucweb|^benq|haier|^lct|opera\s*mobi|opera\*mini|320x320|240x320|176x220"; $regex_match.=")/i"; return isset($_server['http_x_wap_profile']) or isset($_server['http_profile']) or preg_match($regex_match, strtolower($_server['http_user_agent']));} $is_mobile=is_mobile(); if($is_mobile){ //这是一个手机浏览器,可以跳转到手机版网页 //header("location: http://www.abc.com/3g"); echo "手机访问"; }else{ //这不是一个手机浏览器 //header("location: http://www.abc.com/desktop"); echo "电脑访问"; }?>
以上就是php判断是手机还是电脑访问网站的详细内容。