对于函数json_decode()
,有2个输出选项,JSON Object或Array。
$obj = json_decode($json_string, false);
或
$array = json_decode($json_string, true);
对于函数json_decode()
,人们可能会纠结于将结果输出为对象还是关联数组。这里我执行了一个基准测试。
使用的代码(其中$json_string
是Google Maps V3 Geocoding API的JSON输出):
// object
$start_time = microtime(true);
$json = json_decode($json_string, false);
echo '(' . $json->results[0]->geometry->location->lat . ',' . $json->results[0]->geometry->location->lng . ')' . PHP_EOL;
$end_time = microtime(true);
echo 'JSON Object: ' . round($end_time - $start_time, 6) . 's' . PHP_EOL;
// array
$start_time = microtime(true);
$json = json_decode($json_string, true);
echo '(' . $json['results'][0]['geometry']['location']['lat'] . ',' . $json['results'][0]['geometry']['location']['lng'] . ')' . PHP_EOL;
$end_time = microtime(true);
echo 'JSON Array: ' . round($end_time - $start_time, 6) . 's' . PHP_EOL;
我发现Array比Object快30% ~ 50%。