我想使用 HTTP_ACCEPT_LANGUAGE 函数编写一个简单的 if 语句,该函数根据用户浏览器语言的结果进行重定向。我仍然是初学者,所以显然要尽可能简单。这是我到目前为止所拥有的,但“if”语句需要工作。任何人都可以帮我解决问题吗?
<?php
$lang = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
if ($lang=german) {
header("Location: http://www.example.com/german/index.html");
} else if ($lang=spanish) {
header("Location: http://www.example.com/spanish/index.html");
}
else if ($lang=french) {
header("Location: http://www.example.com/french/index.html");
}
else if ($lang=chinese) {
header("Location: http://www.example.com/chinese /index.html");
} else {
echo "<html>english content</html>";
}
?>