gpt4 book ai didi

php - 通过php用mysql设置utf8

转载 作者:行者123 更新时间:2023-11-29 05:46:48 32 4
gpt4 key购买 nike

我有以下非常简单的代码,它检索 utf8 格式的数据,例如包含来自 mysql 数据库的变音符号,它可能会或可能不会设置为 utf8。如果我使用任何一种注释掉的方法来确保返回 utf8 数据,数据将不会作为 utf8 返回,但是如果我不使用它们,数据将被显示。为什么强制使用 utf8 会否定将数据显示为 utf8?

<?php
$con = mysqli_connect("localhost", "x", "", "x");
//$con->query("SET NAMES 'utf8'");
//$con-set_charset('utf8');
$recordsQuery = "SELECT ARTICLE_NAME FROM AUCTIONS1";

if ($getRecords = $con->prepare($recordsQuery)) {
$getRecords->execute();
$getRecords->bind_result($ARTICLE_NAME);

while ($getRecords->fetch()) {
echo "<p>$ARTICLE_NAME";
}
} else {
print_r($con->error);
}

最佳答案

也许错误在于您为页面提供服务的字符集。如果您从数据库中获取 UTF-8 内容并使用 Windows-1252 的默认 HTML 字符集提供它,那么它看起来会出现乱码。确保你有这样的等价物:

header( 'Content-Type: text/html; charset=utf-8' );

在您的 PHP 代码中。

关于php - 通过php用mysql设置utf8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/624301/

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