fork download
  1. <?php
  2.  
  3. $products = [
  4. 0 => [
  5. 'producer' => 'Nokian',
  6. 'model' => 'WR D4',
  7. 'price' => 205.00,
  8. 'quantity' => 2
  9. ],
  10. 1 => [
  11. 'producer' => 'Goodride',
  12. 'model' => ' SU318',
  13. 'price' => 238.01,
  14. 'quantity' => 2
  15. ]
  16. ];
  17.  
  18. $amount = 0;
  19. foreach($products as $product) {
  20. $amount += $product['price'] * $product['quantity'];
  21. }
  22. $amountWithTax = $amount * 1.23;
  23. echo "Cena Netto: {$amount}PLN \n";
  24. echo "Cena Brutto: {$amountWithTax}PLN \n";
Success #stdin #stdout 0.02s 82880KB
stdin
Standard input is empty
stdout
Cena Netto: 886.02PLN 
Cena Brutto: 1089.8046PLN