1
$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"
        }
    ]
]

データを 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"   
}]
4

1 に答える 1

4

array_merge as を使用するよりも 4 つの関数すべてで配列を返す場合は、

$array = array_merge($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);

デモ。

于 2013-06-12T05:41:52.920 に答える