我需要在 php 代码中使用 Json 数组。问题是我在一个 for 循环中,需要将数组分隔为 2 然后想要合并它。但到目前为止它没有用。我用它来制作图表(jqxChart)。
这是我的代码
for($i = 0; $i < $nb; $i++){
if ($i%2 == 1){
$time[$i] = (hexdec($hour[$i]));
$orders1[] = array(
'OrderDate' => $time[$i],
);
}else{
$hour[$i] = $hour[$i] + 1;
$orders2[] = array(
'ProductName' => $hour[$i],
);
}
}
$orders[] = array_merge_recursive( $orders1[], $orders2[] );
}
echo json_encode($orders);
谢谢