<?php $sampleData = range(80, 110); $result = array_fill_keys(['80s', '90s', '100s'], 0); foreach ($sampleData as $value) { ++$result[(10 * ((int)($value / 10) <=> 9) + 90) . 's']; } var_export($result);
You have javascript disabled. You will not be able to edit any code.