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