Answers for "array sum associative array php with filter"

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

Code answers related to "array sum associative array php with filter"

Browse Popular Code Answers by Language