Answers for "how to add all numbers of associative array php"

PHP
3

sum of associative array in php

<?php
$items = [
    ['label' => 'cake', 'name' => 'Cake', 'price' => 150],
    ['label' => 'pizza', 'name' => 'Pizza', 'price' => 250],
    ['label' => 'puff', 'name' => 'Veg Puff', 'price' => 20],
    ['label' => 'samosa', 'name' => 'Samosa', 'price' => 14]
];

$arrSum = array_sum(array_column($items, 'price', 'name'));
print "Sum of Array : ".$arrSum."<br/>";
?>
Posted by: Guest on February-04-2021
0

how to add an array into an associative array in php

$data[$category][] = $item;
Posted by: Guest on July-25-2021

Code answers related to "how to add all numbers of associative array php"

Browse Popular Code Answers by Language