<?php $user = []; $arr = [[ 'chatduration' => 124.502,'username' => 'bhavin'],[ 'chatduration' => 124.502,'username' => 'bhavin']]; foreach($arr as $record){ if (array_key_exists($record['username'],$user)) { $user[$record['username']] = $user[$record['username']] + $record['chatduration']; echo "inside"; } else { $user[$record['username']] = $record['chatduration']; } } print_r($user);
You have javascript disabled. You will not be able to edit any code.