Answers for "array sum function in 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
5

php sum array elements

<?php
$a=array(5,15,25);
echo array_sum($a);
?>
Posted by: Guest on August-06-2020
1

sum of the array elements in php

Return the sum of all the values in the array (5+15+25):

<?php
$a=array(5,15,25);
echo array_sum($a);
?>
Posted by: Guest on June-29-2020
0

PHP array sum

<?php
$indexedArray = Array(20, 20, 5.5, "str");
$associativeArray = Array(
    1 => 20,
    2 => 20,
    3 => 5.5,
    4 => "str"
);

echo array_sum($indexedArray) . "<br>"; // 45.5
echo array_sum($associativeArray); // 45.5

?>
Posted by: Guest on September-11-2021

Browse Popular Code Answers by Language