PHP:计算从multimensional Array销售的商品的受欢迎程度/频率

时间:2016-05-19 04:30:22

标签: php mysql arrays

我有一个从我的mysql中提取的数据,它存储了item_id,item_id已售出或未售出的日期,以及价格 我的查询类似于

select * from freq_history_sales 
where freq_item_id = 123

,输出示例如下所示

    [0] => Array
        (
            [freq_item_id] => 123      // item ID  / sku number etc..
            [freq_end] => 2016-05-06   // when the sale ended
            [freq_status] => sold      // if sold or not
            [freq_price] => 175        // price sold
        )

    [1] => Array
        (
            [freq_item_id] => 123
            [freq_end] => 2016-05-06
            [freq_status] => notsold
            [freq_price] => 225
        )

    [2] => Array
        (
            [freq_item_id] => 123
            [freq_end] => 2016-05-10
            [freq_status] => notsold
            [freq_price] => 225
        )

...etc...

我想记录在特定日期销售/未售出的时间,以及最终价格或商品,然后计算此商品的频率/受欢迎程度

我在问这是否可以在PHP中完成。我就是这样,如何在索引1到10的范围内转换频率,以便我可以判断其受欢迎程度。

0 个答案:

没有答案