作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有带有西里尔字母符号的 MYSQL 表。
This is my MYSQL table
我使用 PHP 获取 MYSQL 结果并将其编码为 JSON。
<?php
include 'connection.php';
$array_to_json = array();
$query = "SELECT * FROM online";
$result = mysqli_query($link, $query);
mysqli_set_charset("utf8");
while($row = $result->fetch_assoc()) {
$row_array['parameters'] = $row['parameters'];
$row_array['Descriptions'] = $row['Descriptions'];
$row_array['units'] = $row['units'];
array_push($array_to_json, $row_array);
}
echo json_encode($array_to_json, JSON_UNESCAPED_UNICODE);
$result->close();
?>
结果我得到了 null。 JSON returns null
我做错了什么?
最佳答案
您尝试过使用
$row_array['parameters'] = base64_encode($row['parameters']);
$row_array['Descriptions'] = base64_encode($row['Descriptions']);
$row_array['units'] = base64_encode($row['units']);
array_push($array_to_json, $row_array);
关于php - JSON 将 Cyryllic 编码为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39486591/
我有带有西里尔字母符号的 MYSQL 表。 This is my MYSQL table 我使用 PHP 获取 MYSQL 结果并将其编码为 JSON。 fetch_assoc()) { $r
我是一名优秀的程序员,十分优秀!