gpt4 book ai didi

php - "×"字符打破 MySQL 记录

转载 作者:可可西里 更新时间:2023-11-01 06:48:46 25 4
gpt4 key购买 nike

“×”符号(不是小 x),我相信这是乘法符号,正在打破 MySQL 记录。

问题是每当我尝试检索具有此符号“×”的记录时,该记录返回为空白。

顺便说一句,我正在使用 PHP 和 WAMP 服务器。

排序规则是 latin1_swedish_ci。但是,更改排序规则似乎并不能解决问题。mysql版本是5.6.17这是我从表中获取记录并将其保存到对象的函数:

public function assign() {
$SQL = "SELECT * FROM " . $this->tb . " ORDER BY " . $this->order;
$this->tb_handle = mysqli_query($this->db_handle,$SQL);

$this->rowNumber = mysqli_num_rows($this->tb_handle);

//this creates arrays from records given even if the table is empty
//this is to prevent errors
if ($this->rowNumber === 0) {
foreach ($this->records as $record) {
$this->{$record} = array();
}
} else {
$i = 0;
while ( $db_field = mysqli_fetch_assoc($this->tb_handle) ) {
foreach ($this->records as $record) {
$this->{$record}[$i] = $db_field[$record];
$this->{$record}[$i] = htmlspecialchars($this->{$record}[$i]);
}
$i++;
}
}
}

这适用于任何没有“×”符号的东西。我不知道为什么那个符号会导致整个记录返回为空白。

最佳答案

我看到您在 PHP 5.4 之前使用 htmlspecialchars,内部编码是 UTF-8。所以如果你有一个 iso 数据的记录,你把它放在 htmlspecialchars 中。 你得不到任何结果。

在这种情况下,您必须将编码设置为 iso-8859-1

要解决这个问题你可以定义一个编码

htmlspecialchars($value, ENT_QUOTES, "ISO-8859-1");

这将修复错误显示的符号:

mb_convert_encoding($value, "UTF-8");

我认为这可能是您的问题。

关于php - "×"字符打破 MySQL 记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25441583/

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