<?php $array = [ ['Name' => 'Apple', 'Count' => 10], ['Name' => 'Tomato', 'Count' => 23], ['Name' => 'Tree', 'Count' => 4], ['Name' => 'Potato', 'Count' => 44], ['Name' => 'Apple', 'Count' => 73] ]; $total = 0; foreach ($array as ['Name' => $n]) { $total += $n[0] === 'A'; } echo $total;
You have javascript disabled. You will not be able to edit any code.