但据此:http ://www.php.net/manual/en/function.json-encode.php#94157它不会。
我正在使用 flot,所以我需要返回一个带有数字索引的数组,但我得到的是:
jsonp1282668482872 ( {"label":"Hits 2010-08-20","data":{"1281830400":34910,"1281916800":45385,"1282003200":56928,"1282089600":53884,"1282176000":50262,"1281657600":45446,"1281744000":34998}} );
所以flot窒息了。如果我在调用 json_encode 之前 var_dump 数组,它看起来像这样:
array(7) {
[1281830400]=>
int(34910)
[1281916800]=>
int(45385)
[1282003200]=>
int(56928)
[1282089600]=>
int(53884)
[1282176000]=>
int(50262)
[1281657600]=>
int(45446)
[1281744000]=>
int(34998)
}
有任何想法吗?