php自动跳转中英文页面

前端之家收集整理的这篇文章主要介绍了php自动跳转中英文页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

PHP代码:
<?
$lan=substr(?$HTTP_ACCEPT_LANGUAGE,5);
if($lan=="zh-cn")
print("<metahttp-equiv='refresh'content='0;URL=gb/index.htm'>");
else
print("<metahttp-equiv='refresh'content='0;URL=eng/index.htm'>");
?> HTML网页根据来访这的浏览器语言不同自动跳转多语言页面 在之间加入如下代码

原文链接:https://www.f2er.com/php/29545.html

猜你在找的PHP相关文章