Как рассчитать промежуточную и общую сумму в таблице в PHP?

Мой сценарий такой:

<?php
    $data = array(
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '002', 'quantity' => '2','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '004', 'quantity' => '3','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '005', 'quantity' => '4','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '006', 'quantity' => '5','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '008', 'quantity' => '1','cost' => '2000'),
        array('transaction_number' => 'AB-0002','date' => '2018-08-02', 'item_number' => '0101010', 'desc' => 'This is b', 'variant_code' => '013', 'quantity' => '2','cost' => '2000'),
        array('transaction_number' => 'AB-0002','date' => '2018-08-02', 'item_number' => '0101010', 'desc' => 'This is b', 'variant_code' => '020', 'quantity' => '3','cost' => '2500'),
        array('transaction_number' => 'AB-0002','date' => '2018-08-02', 'item_number' => '0101010', 'desc' => 'This is b', 'variant_code' => '022', 'quantity' => '4','cost' => '2500'),
        array('transaction_number' => 'AB-0003','date' => '2018-08-03', 'item_number' => '0101010', 'desc' => 'This is c', 'variant_code' => '007', 'quantity' => '1','cost' => '2500'),
        array('transaction_number' => 'AB-0003','date' => '2018-08-03', 'item_number' => '0101010', 'desc' => 'This is c', 'variant_code' => '015', 'quantity' => '7','cost' => '2500')
    );
?>
<table>
    <tr>
        <th>transaction_number</th>
        <th>date</th>
        <th>item_number</th>
        <th>desc</th>
        <th>variant_code</th>
        <th>quantity</th>
        <th>cost</th>
    </tr>
    <?php
    foreach($data as $key=>$value) {
    ?>
    <tr>
        <td><?php echo $value['transaction_number'] ?></td>
        <td><?php echo $value['date'] ?></td>
        <td><?php echo $value['item_number'] ?></td>
        <td><?php echo $value['desc'] ?></td>
        <td><?php echo $value['variant_code'] ?></td>
        <td><?php echo $value['quantity'] ?></td>
        <td><?php echo $value['cost'] ?></td>
    </tr>
    <?php 
    }
    ?>
</table>

Если скрипт выполнен, результат будет таким:

Как рассчитать промежуточную и общую сумму в таблице в PHP?

Я хочу, чтобы результат был таким:

Как рассчитать промежуточную и общую сумму в таблице в PHP?

Как мне это сделать?

Стоит ли изучать PHP в 2023-2024 годах?
Стоит ли изучать PHP в 2023-2024 годах?
Привет всем, сегодня я хочу высказать свои соображения по поводу вопроса, который я уже много раз получал в своем сообществе: "Стоит ли изучать PHP в...
Symfony Station Communiqué - 7 июля 2023 г
Symfony Station Communiqué - 7 июля 2023 г
Это коммюнике первоначально появилось на Symfony Station .
Оживление вашего приложения Laravel: Понимание режима обслуживания
Оживление вашего приложения Laravel: Понимание режима обслуживания
Здравствуйте, разработчики! В сегодняшней статье мы рассмотрим важный аспект управления приложениями, который часто упускается из виду в суете...
Установка и настройка Nginx и PHP на Ubuntu-сервере
Установка и настройка Nginx и PHP на Ubuntu-сервере
В этот раз я сделаю руководство по установке и настройке nginx и php на Ubuntu OS.
Коллекции в Laravel более простым способом
Коллекции в Laravel более простым способом
Привет, читатели, сегодня мы узнаем о коллекциях. В Laravel коллекции - это способ манипулировать массивами и играть с массивами данных. Благодаря...
Как установить PHP на Mac
Как установить PHP на Mac
PHP - это популярный язык программирования, который используется для разработки веб-приложений. Если вы используете Mac и хотите разрабатывать...
1
0
55
1
Перейти к ответу Данный вопрос помечен как решенный

Ответы 1

Ответ принят как подходящий

Для достижения вашей цели, вероятно, есть несколько способов сделать это - я решил использовать массивы для хранения недавно обнаруженных номеров транзакций и дат. Проверяя, находится ли элемент уже в массиве или нет, вы можете объявить новые переменные / объекты, которые затем используются позже в визуализированном выводе.

<?php
    $data = array(
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '002', 'quantity' => '2','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '004', 'quantity' => '3','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '005', 'quantity' => '4','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '006', 'quantity' => '5','cost' => '2000'),
        array('transaction_number' => 'AB-0001','date' => '2018-08-01', 'item_number' => '0101010', 'desc' => 'This is a', 'variant_code' => '008', 'quantity' => '1','cost' => '2000'),
        array('transaction_number' => 'AB-0002','date' => '2018-08-02', 'item_number' => '0101010', 'desc' => 'This is b', 'variant_code' => '013', 'quantity' => '2','cost' => '2000'),
        array('transaction_number' => 'AB-0002','date' => '2018-08-02', 'item_number' => '0101010', 'desc' => 'This is b', 'variant_code' => '020', 'quantity' => '3','cost' => '2500'),
        array('transaction_number' => 'AB-0002','date' => '2018-08-02', 'item_number' => '0101010', 'desc' => 'This is b', 'variant_code' => '022', 'quantity' => '4','cost' => '2500'),
        array('transaction_number' => 'AB-0003','date' => '2018-08-03', 'item_number' => '0101010', 'desc' => 'This is c', 'variant_code' => '007', 'quantity' => '1','cost' => '2500'),
        array('transaction_number' => 'AB-0003','date' => '2018-08-03', 'item_number' => '0101010', 'desc' => 'This is c', 'variant_code' => '015', 'quantity' => '7','cost' => '2500')
    );

    $symbol='£';
?>
<!doctype html>
<html>
    <head>
        <meta charset='utf-8' />
        <title>HTML table based upon PHP array data</title>
        <style>
            table{ border:1px solid gray;font-family:calibri,verdana,arial;float:none;margin:auto; }
            th{background:gray;color:white;padding:0.5rem;}
            td{padding:0.5rem;border:1px dotted gray;}
            td[colspan]{background:whitesmoke;}
            .currency:before{
                content:'<?=$symbol;?>';
                color:green;
                font-weight:bold;
            }
        </style>
    </head>
    <body>
        <table>
            <tr>
                <th>transaction_number</th>
                <th>date</th>
                <th>item_number</th>
                <th>desc</th>
                <th>variant_code</th>
                <th>quantity</th>
                <th>cost</th>
            </tr>
            <?php

                $trans=array();
                $dates=array();

                $total=new stdClass;
                $total->qty=0;
                $total->cost=0;


                foreach( $data as $index => $a ){
                    /*
                        Transaction number & date variables
                        - empty unless not in array
                    */
                    $tn='';
                    $dt='';

                    /* check if current transaction is already in the array - if not add it and create a new subtotal object */
                    if ( !in_array( $a['transaction_number'], $trans ) ) {
                        /* assign `$dt` variable to newly discovered transaction and add to array */
                        $tn = $trans[] = $a['transaction_number'];

                        $subtotal=new stdClass;
                        $subtotal->qty=0;
                        $subtotal->cost=0;
                    }
                    /* Check if the date is in it's array - if not, add it */
                    if ( !in_array( $a['date'], $dates ) ) {
                        /* assign `$dt` var to newly discovered date and add to array */
                        $dt = $dates[] = $a['date'];
                    }

                    /* update subtotals */
                    $subtotal->qty += floatval( $a['quantity'] );
                    $subtotal->cost += floatval( $a['cost'] );


                    /* output the table row with data including vars defined above */
                    printf('
                    <tr>
                        <td>%s</td>
                        <td>%s</td>
                        <td>%s</td>
                        <td>%s</td>
                        <td>%s</td>
                        <td>%s</td>
                        <td>%s</td>
                    </tr>', $tn, $dt, $a['item_number'], $a['desc'], $a['variant_code'], $a['quantity'], $a['cost'] );


                    /* Show the sub-total for current transaction number */
                    if ( ( $index < count( $data ) - 1 && $trans[ count( $trans )-1 ] != $data[ $index + 1 ]['transaction_number'] ) or $index==count( $data )-1 ){
                        printf('
                        <tr>
                            <td colspan=4>&nbsp;</td>
                            <td>SUB-TOTAL</td>
                            <td>%s</td>
                            <td class = "currency">%s</td>
                        </tr>', $subtotal->qty, $subtotal->cost );

                        $total->qty += floatval( $subtotal->qty );
                        $total->cost += floatval( $subtotal->cost );
                    }
                }

                /* Show the final totals */
                printf('
                <tr><td colspan=7>&nbsp;</td></tr>
                <tr>
                    <td colspan=4>&nbsp;</td>
                    <td>TOTAL</td>
                    <td>%s</td>
                    <td class = "currency">%s</td>
                </tr>', $total->qty, $total->cost );

            ?>
        </table>
    </body>
</html>

Rendered HTML Table

Или можно надеяться, что живое подтверждение концепции можно найти здесь

Другие вопросы по теме