我目前正在使用
$fp = fopen('chartdata.json', 'w');
fwrite($fp, json_encode($resultsarray, JSON_NUMERIC_CHECK));
fclose($fp);
将我的数据集写入JSON中的文件,然后让Google Chart读取文件,如下所示:
getjson.php
$string = file_get_contents("chartdata.json");
echo $string;
chart.php
function drawChart() {
var jsonData = $.ajax({
url: "getjson.php",
dataType: "json",
async: false
}).responseText;
如果这个页面在一小时内高音量说100k命中,那么使用这种方法会变得不合适吗?如果是这样,那么更好的方法是什么?