gpt4 book ai didi

php - php、ajax、json、jquery、mysql 中土耳其字符的 UTF-8 编码问题

转载 作者:行者123 更新时间:2023-11-29 20:26:17 24 4
gpt4 key购买 nike

我在字符编码方面遇到问题。我尝试了很多事情,但没有结果。情况如下:我的数据库中有一些存储过程,我向用户发送通知。这是:

some calculations..
IF @howmanyknew=0 || @howmanyknew>=6 THEN
SET @memberID=(SELECT userID FROM myDB.users WHERE ticketID=@ID);
INSERT INTO notifications (senderID,receiverID,messageContent,isRead)VALUES(1,@memberID,"Some turkish characters like ö ç ş ğ ü ı İ",0);
END IF;

这是我的通知表的结构:

id (INT) (PRIMARY_KEY)
senderID (INT)
receiverID (INT)
messageContent (TEXT) utf-8_turkish_ci
isRead (INT)

添加此内容后,用户会看到一个通知球,就像 Facebook 中一样。当用户单击它时,他/她会看到以下消息:

  1. 没有土耳其字符,没问题:

    Case1

  2. 一些土耳其语字符:ö、ç、ü。我在控制台中收到此消息:

    (index):167 Uncaught TypeError: Cannot read property 'counter' of null

    这里,ajax无法通过json_encode()从后面的php页面(fetchMessages.php)获取变量

  3. 其余土耳其语字符:ş、ı、ğ。

    Case 3

这是我的index.phpfetchMessage.php的相关部分

重要提示:两者均采用“UTF-8 without BOM”编码

index.php:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<script>
.
.
$.ajax({
type:"POST",
url:"fetchMessages.php",
data: '{"id":"'+id+'"}',
dataType: "json",
success: function(returnedData) {
var n=returnedData.counter;
$(".content").empty();
for(i=0;i<n;i++)
{
$(".content").append("<span style='display:block;text-align:left;font-size:9px;font-style:italic;background:gray'>"+returnedData.nick[i]+":</span>");
$(".content").append("<div class='divtext' contentEditable>"+returnedData.msg[i]+"</div>");
}
$(".content").fadeIn("slow");
},
error: function(returnedData){
alert(returnedData);
}
});
.
.
</script>

fetchMessages.php:

<?php
//header('Content-Type: application/json; charset=iso-8859-1');
//setlocale(LC_ALL, 'tr_TR');
include("conn.php");
//iconv('cp1252', 'utf-8', "\x80 and \x95")-> "\xe2\x82\xac and \xe2\x80\xa2";
$input = file_get_contents('php://input');
$result=json_decode($input);
$id=$result->id;
$result=dbquery("select * from notifications where receiverID=".$id." and isRead=0");
$senders=array();
$msgs=array();
$ids=array();
$counter=0;
while ($row = $result->fetch_assoc())
{
$m=$row["messageContent"];
//$m=iconv("UTF-8", "ISO-8859-1//TRANSLIT", $m), PHP_EOL;
$msgs[$counter]=$m;
$ids[$counter]=$row["id"];
$senderID=$row["senderID"];
$result=dbquery('select * from usertbl where userID='.$senderID.'');
$s=$result->fetch_assoc();
$senders[$counter]=$s["username"];
dbupdate("notifications", array("isRead"=>1), array("id"=>$ids[$counter]));
$counter=$counter+1;
}
echo json_encode(array(msg=>$msgs,nick=>$senders,counter=>$counter,ids=>$ids));
?>

您还可以在 php 页面中看到一些注释。我也尝试过。但正如我所说,没有结果。

AND如果我将它们从“utf-8 without BOM”转换为“utf-8”,我只会收到针对上述情况 2 中的字符的警告对话框:

[object XMLHttpRequest]

但是,我仍然对其余部分打问号。

最佳答案

您可以尝试添加

"SET NAMES UTF-8" 

连接数据库后的 Sql 语句。

关于php - php、ajax、json、jquery、mysql 中土耳其字符的 UTF-8 编码问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39292989/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com