<?php $dealers = [ ['id' => 1526, 'count' => 2], ['id' => 1518, 'count' => 5], ['id' => 1511, 'count' => 2], ['id' => 1410, 'count' => 3], ]; $counts = array_column($dealers, 'count'); $indexes = array_keys($counts, min($counts)); var_export($indexes ? $dealers[$indexes[array_rand($indexes)]] : null);
You have javascript disabled. You will not be able to edit any code.