douxiduan8344 2013-10-17 13:28
浏览 155
已采纳

基于特定字段的值在PHP中对数组进行分组或排序

SELECT    m.manufacturers_id, m.manufacturers_name,
          op.products_price,
          op.products_quantity,
          p.products_cost.....

I have these fields and I need to perform php arithmetic on the results, but keep them grouped based on their m.manufacturers_id. This is the format of the result I need or desire.

Array(
    [m.manufacturers_id]
        [m.manufacturers_name]
            [brands_total_sales ]
            (sum of all the products_price * qty for the products in this manufacturers_id)
            [products]
                [0] =>
                    [op.products_price] = ''
                    [op.products_quantity] = ''
                    [p.products_cost] = ''
                [1] =>
                    [op.products_price] = ''
                    [op.products_quantity] = ''
                    [p.products_cost] = ''
                [2] =>

Then that repeats for all the products per unique manufacturers_id. I guess basically the question is, is there a php function to manipulate an array of results to "sort" or "group" into manufacturers_id

Thanks in advance, an help or advise is greatly appreciated.

  • 写回答

2条回答 默认 最新

  • douqiao1997 2013-10-17 13:34
    关注

    php script

    <pre>
    <?php
    
    // Data Source
    $db_data = array(
        array('manufacturers_id' => 1, 'manufacturers_name' => 'Some Company', 'products_price' => 1.99, 'products_quantity' => 12, 'products_cost' => 0.49),
        array('manufacturers_id' => 1, 'manufacturers_name' => 'Some Company', 'products_price' => 1.99, 'products_quantity' => 12, 'products_cost' => 0.49),
        array('manufacturers_id' => 2, 'manufacturers_name' => 'Another Company', 'products_price' => 12.99, 'products_quantity' => 112, 'products_cost' => 10.49),
        array('manufacturers_id' => 2, 'manufacturers_name' => 'Another Company', 'products_price' => 12.99, 'products_quantity' => 112, 'products_cost' => 10.49),
    );
    
    // Sort Data
    $db_data_sorted = array();
    foreach ($db_data as $data) {
        $db_data_sorted[$data['manufacturers_id']][$data['manufacturers_name']]['brands_total_sales'] += (intval($data['products_quantity']) * floatval($data['products_price']));
        $db_data_sorted[$data['manufacturers_id']][$data['manufacturers_name']]['products'][] = array(
            'products_price' => $data['products_price'],
            'products_quantity' => $data['products_quantity'],
            'products_cost' => $data['products_cost']
        );
    }
    
    // Debug
    print_r($db_data_sorted);
    
    ?>
    

    output:

    Array
    (
        [1] => Array
            (
                [Some Company] => Array
                    (
                        [brands_total_sales] => 47.76
                        [products] => Array
                            (
                                [0] => Array
                                    (
                                        [products_price] => 1.99
                                        [products_quantity] => 12
                                        [products_cost] => 0.49
                                    )
    
                                [1] => Array
                                    (
                                        [products_price] => 1.99
                                        [products_quantity] => 12
                                        [products_cost] => 0.49
                                    )
    
                            )
    
                    )
    
            )
    
        [2] => Array
            (
                [Another Company] => Array
                    (
                        [brands_total_sales] => 2909.76
                        [products] => Array
                            (
                                [0] => Array
                                    (
                                        [products_price] => 12.99
                                        [products_quantity] => 112
                                        [products_cost] => 10.49
                                    )
    
                                [1] => Array
                                    (
                                        [products_price] => 12.99
                                        [products_quantity] => 112
                                        [products_cost] => 10.49
                                    )
    
                            )
    
                    )
    
            )
    
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services