Home  >  Article  >  php教程  >  php转换asp问题!!高手请进!

php转换asp问题!!高手请进!

WBOY
WBOYOriginal
2016-06-06 19:40:44952browse

?php $where = $_SERVER["HTTP_ACCEPT_LANGUAGE"]; $now_char = explode(',',$where); $where = explode('-',$now_char[0]); $en=$where[0]; $site = $where[1]; if($site=='US' || $site=='us') { header('Location: http://9775956.k84.opensrs.cn/2012/')

$where = $_SERVER["HTTP_ACCEPT_LANGUAGE"];
$now_char = explode(',',$where);
$where = explode('-',$now_char[0]);
$en=$where[0];
$site = $where[1];

if($site=='US' || $site=='us')
{
    header('Location: http://9775956.k84.opensrs.cn/2012/');
    exit;
}
else
{
    header('Location: http://www.sunearthpower.com/web/');
    exit;
}
?>

 

 

 

 

上面一段代码是php版本的语言判断,如何用asp实现同样的功能?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn