OSDN Git Service

[fix]応答ヘッダにContent-Typeを設定
authorHabu <habu@users.sourceforge.jp>
Mon, 30 Apr 2018 02:45:18 +0000 (11:45 +0900)
committerHabu <habu@users.sourceforge.jp>
Mon, 30 Apr 2018 02:45:18 +0000 (11:45 +0900)
jsonでデータを返すので、application/json をContent-Typeに設定する

score/get_popularity_ranking.php

index 27e42b6..8260797 100644 (file)
@@ -17,4 +17,5 @@ $statistics = $db->get_statistics_tables('total_count');
 
 $query_time = microtime(true) - $time_start;
 
+header('content-type: application/json; charset=utf-8');
 echo json_encode($statistics);