i have got an associative array as follows:
$data['england']='pound'
$data['america']='dollar'
$data['europe']='euro'
$data['denmark']='krone'
$data['japan']='yen'
I want to sort this array and after that i want 'europe' to be the first element in the array. To sort the array, i am using ksort() in php, now how can i get hold of the 'europe' array object so that i can make it the first element and shift all the remaining elements down?
ksortin the manual, what stopped you from investigating the other*sortfunctions? Also, what is your sorting logic? Just putting Europe first? What about the other elements? – Gordon♦ Oct 17 '11 at 11:51