请问我的json文件有问题,我希望有人可以帮助我。我已搜索但无法完全理解我找到的解决方案。
我在json with special characters like é检查过没有运气和其他一些地方。
这是我的json数组脚本
<?php
$response = array();
require_once __DIR__ . '/db_connect.inc.php';
$result = mysql_query("SELECT id, name, artist_id, year, length, ndisc, keywords, hits, image, review, user_id, tags, genre_id, added, album_file FROM albums ORDER BY id DESC") or die(mysql_error());
if (mysql_num_rows($result) > 0) {
$response["albums"] = array();
while ($row = mysql_fetch_array($result)) {
$album = array();
$album["id"] = $row["id"];
$album["name"] = $row["name"];
$album["artist_id"] = $row["artist_id"];
$album["year"] = $row["year"];
$album["length"] = $row["length"];
$album["ndisc"] = $row["ndisc"];
$album["keywords"] = $row["keywords"];
$album["hits"] = $row["hits"];
$album["image"] = $row["image"];
$album["review"] = $row["review"];
$album["user_id"] = $row["user_id"];
$album["tags"] = $row["tags"];
$album["genre_id"] = $row["genre_id"];
$album["added"] = $row["added"];
$album["album_file"] = $row["album_file"];
array_push($response["albums"], $album);
}
$response["success"] = 1;
echo json_encode($response);
} else {
$response["success"] = 0;
$response["message"] = "No album found";
echo json_encode($response);
}
?>
当数组中没有特殊字符文本时,这可以正常工作。所以我遇到的问题是,当é,ö,Ø等特殊字符文本出现在任何数组字段中时,它不会返回任何内容。
所以我想知道的是,如何重写我的json脚本以检索这些值?
非常感谢你。