我通过print_r在下面有一个数组,但是我只需要使用其中的一部分,所以我可以在flot图表中使用它。
数组([success] => 1 [timestamp] => 1383824357 [data] =>数组([0] =>数组([label] => customer1 [SUM(value)] => 12345)[1] =>数组([label] => customer2 [SUM(value)] => 67890)[2] =>数组([label] => customer3 [SUM(value)] => 11223)[3] =>数组([label] => customer4 [SUM(value)] => 33445)))
flot图表想要的格式是这样的(使用上面的数据):
[
{ label: "customer1", data: 12345},
{ label: "customer2", data: 67890},
{ label: "customer3", data: 11223},
{ label: "customer4", data: 34455}
];
有人知道如何访问上述数据吗?
答案 0 :(得分:2)
所以你基本上想用“SUM(value)”键改变“数据”键,然后访问数组?如果是这样,你可以使用这个片段:
<?php
echo json_encode($data);
function array_change_key_name( $orig, $new, &$array ) {
foreach ( $array as $k => $v ) {
$res[ $k === $orig ? $new : $k ] = ( (is_array($v)||is_object($v)) ? array_change_key_name( $orig, $new, $v ) : $v );
}
return $res;
}
$new = array_change_key_name("data" ,"SUM(value)" , $data);
echo json_encode($new);
?>
编辑:代码更改键SUM(值)中的键数据...如果我理解你想要对立...只需反转这样的函数参数
$ new = array_change_key_name(“SUM(value)”,“data”,$ data);
还有另一种方法可以做同样的事情,但你必须改变查询:
Select SUM(value) etc etc
到
Select SUM(value) as data etc etc
并且DB将处理所有的u:)
答案 1 :(得分:1)
只需将其转换为JSON对象:
$json = json_encode($array['data']);
然后你就拥有了你需要的结构。
您可能需要将字段名称从value
更改为data
。
答案 2 :(得分:0)
print_r($array['data']); // $array is the name of your array
你可以这样做:
foreach ($myArray as $val) {
echo $val['data'].'<br />';
// Do whatever you want to do here
}
答案 3 :(得分:0)
试试这可能会起作用。我没有测试过...
$myArray = "Your array";
$data = $myArray['data'];
$js_ar = '"';
foreach($data as $record)
{
$js_ar .= '{ "label": $record[label], data: $record[SUM(value)]}';
}
$js_ar = '"';
$json_data = json_encode($js_ar);
print_r ($json_data);