gpt4 book ai didi

php - 使用 php 从 MySql 数据库中检索印度语言数据显示异常字符集

转载 作者:行者123 更新时间:2023-11-30 21:56:45 24 4
gpt4 key购买 nike

我正在检索印度语言的数据,我得到的输出是 ??????????????????????????????

注意:- 我在我的 php 脚本中使用了这两行

header('Content-type: text/plain; charset=utf-8');
mysqli_set_charset($conn,'utf-8');

而且我在数据库和表格中使用了 utf8_general_ci 编码。

我的 php 脚本是

<?php

require 'init.php';

header('Content-type: text/plain; charset=utf-8');
mysqli_set_charset($conn,'utf-8');

$table = $_GET['table_name'];

$sql = "SELECT * FROM ".$table;

$response = array();

$result = mysqli_query($conn,$sql);

if(mysqli_num_rows($result)>0) {
while($row = mysqli_fetch_array($result)) {
array_push($response, array('id'=>$row['id'],'text'=>$row['text']));
}
echo json_encode($response);
} else {
echo "error";
}

mysqli_close($conn);

?>

您可以查看链接 http://www.sharefb.com/statusApp/readStatus.php?table_name=gujrati_attitude

最佳答案

使用 mysqli_set_charset( $db, 'utf8');

关于php - 使用 php 从 MySql 数据库中检索印度语言数据显示异常字符集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44898358/

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