Answers for "summing array php"

PHP
4

sum of associative array in php

<?php
	$items = [
	['emp_id' => '1', 'name' => 'ram', 'age' => 40],
	['emp_id' => '5', 'name' => 'ram_1', 'age' => 20],
	['emp_id' => '2', 'name' => 'ram_2', 'age' => 30],
	['emp_id' => '3', 'name' => 'ram_4', 'age' => 25],
	['emp_id' => '4', 'name' => 'ram_3', 'age' => 50]

];
// please find minimum age employee in above array.
echo  min(array_column($items, 'age'));
?>
Posted by: Guest on February-04-2021
6

php sum array elements

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

Code answers related to "summing array php"

Browse Popular Code Answers by Language