<?php $array = [ //... 'name' => ['value' => 'Raj KB'], 'street' => ['value' => 'Street ABC'], 'city' => ['value' => 'Dubai'], 'country_id' => ['value' => 'UAE'], 'region' => ['value' => 'DXB'], 'region_id' => ['value' => 11], 'zip_code' => ['value' => 12345], 'city_id' => ['value' => 22], //... ]; $ordered_keys = ['country_id', 'region', 'region_id', 'city', 'city_id']; $keys = (function ($array, $ordered_keys) { $flag = true; foreach ($array as $key => $v) { if ( $flag && in_array($key, $ordered_keys) ) { yield from $ordered_keys; $flag = false; } yield $key; } })($array, $ordered_keys); $result = []; foreach($keys as $key) { $result[$key] = $array[$key]; } print_r($result);
You have javascript disabled. You will not be able to edit any code.