<?php // Sample array $myArray = array( "apple" => 2, "orange" => 5, "banana" => 3, "kiwi" => 1, ); $specialKey = "banana"; $toparray[$specialKey] = $myArray[$specialKey]; unset($myArray[$specialKey]); ksort($myArray); print_r($toparray+$myArray);
You have javascript disabled. You will not be able to edit any code.