<?php $users = json_decode('[{"first_name":"Rebecca"},{"first_name":"amy"},{"first_name":"Amy"},{"first_name":"stacy"}]', true); $firstNames = array_column($users, 'first_name'); array_multisort(array_map('strtolower', $firstNames), $firstNames, $users); var_export($users);
You have javascript disabled. You will not be able to edit any code.