我对 utf-8 编码很陌生,从那时起就一直使用 htmlentities(),但现在想更改为在数据库中使用 utf-8。我认为这可能会派上用场,因为我正在编程的网站是德语,所以我使用了很多变音符号。
但是,我突然想到我有一个我无法解释的问题。在 html 头中,我说
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
为了测试,如果我输入一个普通的“ö”并在 html 中硬编码,它显示得很好。
现在出现了奇怪的事情:在我的数据库中,我有一个条目“Köln” - 在数据库中它看起来完全像这样。但是,当我使用 php 从表中获取字符串并将其回显时,它会回显为“K�ln”。
另一方面,如果我输入变音符号并使用 ajax 将其发送到表中,“Köln”——我输入的字符串——在数据库中变为“Köln”。
我为此使用以下代码:
//Change city
$('#newcitybutton').click(function(){
//Get id and city
var id=encodeURIComponent($('#id').html()); //This does not seem to be the problem - if I leave that out, I still does the same thing
var city=$('#newcity').val();
//Call script to change city
$.ajax({
type: 'POST',
url: 'action/changecity.php',
data: 'id='+id+'&city='+city+'&kind='+kind,
success: function(feedback){
var json=$.parseJSON(feedback);
if(json.success=='false'){
$('#newcityfeedback').css('color','red').html(json.message).hide().fadeIn(200);
}else if(json.success=='true'){
$('#newcity').hide();
$('#newcitybutton').hide();
$('#'+kind+'city').html(decodeURIComponent(city));
$('#newcityfeedback').css('color','green').html(json.message).hide().fadeIn(200).delay(2000).fadeOut(200);
}
}
});
});
改变城市.php:
//Save in vars
$id=$_POST['id'];
$city=$_POST['city'];
$kind=$_POST['kind'];
//Update city
$query="UPDATE ".$kind."s SET city='$city' WHERE id=$id";
mysql_query($query);
我想当我$city=utf8_decode($city);
在放入数据库之前使用时,它会正确保存在那里。但后来我需要使用 utf8_encode 在页面上正确显示。
我在这里做错了什么?我只是无法弄清楚错误来自我的代码还是数据库。