欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php自动跳转中英文页面_PHP教程

程序员文章站 2022-05-23 19:01:06
...
PHP代码:

$lan = substr(?$HTTP_ACCEPT_LANGUAGE,0,5);
if ($lan == "zh-cn")
print("");
else
print("");
?>

HTML网页根据来访这的浏览器语言不同自动跳转多语言页面

之间加入如下代码。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/319349.htmlTechArticlePHP代码: ? $lan=substr(?$HTTP_ACCEPT_LANGUAGE,0,5); if($lan=="zh-cn") print("metahttp-equiv='refresh'content='0;URL=gb/index.htm'"); else print("metahttp-equiv='refresh'content='0...