<?php $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $is_pc = (strpos($agent, 'windows nt')) ? true : false; $is_mac = (strpos($agent, 'mac os')) ? true : false; $is_iphone = (strpos($agent, 'iphone')) ? true : false; $is_android = (strpos($agent, 'android')) ? true : false; $is_ipad = (strpos($agent, 'ipad')) ? true : false; if($is_pc){ $a=1; } if($is_mac){ $a=1; } if($is_iphone){ $a=2; } if($is_android){ $a=2; } if($is_ipad){ $a=2; } if($a==1){ if($_GET['url']){ $url=$_GET['url']; header("Location: 【电脑端接口】$url"); } } if($a==2){ if($_GET['url']){ $url=$_GET['url']; header("Location: 【手机端接口】=$url"); } }
暂无评论
请先登录后发表评论!
暂无评论