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/>";
?>

Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
sum all number in array php php sum total array php array of arrays sum sum of array of numbers php sum array elements function php php int array sum sum associative array php sum items in array php how to sum array values programmatically in php sum of all array elements in php sum of an array in php sum values in an array php sum of respective values arrays php sum of all array values php array sum of values php sum of assosiative array php php sum values of associative array sum value in array php sum elements in array php array element sum php php array sum value sum array in php sum of array value in php sum values of assosciative array php sum values of array php php sum of associative array values php associative array value sum of other elements sum in arry php sum of arry php sum array of array php php sum arary php sum of array sum elements of an array in php how to sum elements of an array in php manually sum array elements php php how to sum en array php function to output sum of array elements how to make array sum with in the array php php array sum of values sum of array elements php sum values in array in php sum of values in array php how sum array php sum array values in php how to sum array values in php php sum of array values php sum all elements in array php sum array value sum array of int php Sum of array in PHP without using function sum of all data of array php php sum all array values how to use array sum in php php sum value in array sum of items in php array sum all values of array in php php sum associative array values array sum values php sum of array values in php how to sum an array of intergers in php array in php sum sum array elements php array sum in php php sum of arry array values sum in php array sum associative array php sum of elements array php sum a parameter in associative array php how i can sum of associative array in php php sum int array array variable sum php php array sum sum array values php php arra sum of the values in array sum php array sum of array php sum of array in php sum of all array elements php how to sum values with associative array in php sum associative array property values php php sum array values php array sum operator php quick way to sum all the values in an associative array php sum array of integers php associative array sum by column using array sum on associative array php php sum values in associative array php associative array sum value php associative array sum values php associative array sum values by key sum of associative array in php
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source