标签:android style blog http color io os sp div
1 <?php 2 3 $Agent = $_SERVER[‘HTTP_USER_AGENT‘]; 4 preg_match(‘/android|iphone/i‘,$Agent,$matches); 5 if (strtolower($matches[0]) == ‘android‘) { 6 // echo "安卓"; 7 header("Location: ".$GLOBALS["public_appconfig"]["app"][‘android‘]."‘"); 8 } elseif (strtolower($matches[0]) == ‘iphone‘) { 9 header("‘Location: ".$GLOBALS["public_appconfig"]["app"][‘ios‘]."‘"); 10 }else{ 11 //不确定是什么系统或者是pc 12 header("Location: ".$GLOBALS["public_appconfig"]["app"][‘android‘]."‘"); 13 } 14 15 16 ?>
标签:android style blog http color io os sp div
原文地址:http://www.cnblogs.com/hioop/p/4022750.html