Кодирование JSON умножает массивы как единый массив

$array = array( $this->_order->revenue_seller($value,$from,$to), $this->_order->refund_seller($value,$from,$to), $this->_order->customers_seller($value,$from,$to), $this->_order->sales_seller($value,$from,$to) ); $this->response($array,200); 

Я хочу, чтобы данные отображались как один массив, но, как мы видим, вывод начинается как массив массивов:

 [ [ { "min_amount":"2.00", "max_amount":"2.00", "avg_amount":"2.000000", "total_revenue":"2.00" } ], [ { "total_refund_amount":"1.00" } ], [ { "created_at":"2013-03-24 15:04:35" } ], [ { "quantity":"1" } ] ] 

Как заставить данные отображаться как один массив?

Как это:

 [ { "day":"2013-03-19", "min_amount":"0.00", "max_amount":"0.00", "avg_amount":"0.000000", "total_revenue":"0.00", "quantity" : "1", "total_refunded_amount":null, "created_at":"2013-03-24 15:04:35" }]